Merge pull request #2114 from FIRST-Tech-Challenge/20260724-093406-release-candidate

FtcRobotController v11.2.1
This commit is contained in:
Cal Kestis
2026-07-31 10:17:43 -07:00
committed by GitHub
9 changed files with 34 additions and 18 deletions

View File

@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:versionCode="62" android:versionCode="63"
android:versionName="11.2"> android:versionName="11.2.1">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

View File

@@ -59,6 +59,11 @@ The readme.md file located in the [/TeamCode/src/main/java/org/firstinspires/ftc
# Release Information # Release Information
## Version 11.2.1 (20260724-093406)
### Bug Fixes
* Fixes issue [2099](https://github.com/FIRST-Tech-Challenge/FtcRobotController/issues/2099). Gradle and the AGP are now updated to 9.1 and 8.13.2 respectively.
## Version 11.2 (20260707-102819) ## Version 11.2 (20260707-102819)
### Breaking Changes ### Breaking Changes

View File

@@ -1,3 +1,5 @@
apply plugin: 'com.android.application'
// //
// build.gradle in TeamCode // build.gradle in TeamCode
// //
@@ -8,7 +10,6 @@
// please think carefully as to whether such customizations are really necessary // please think carefully as to whether such customizations are really necessary
// before doing so. // before doing so.
// Custom definitions may go here // Custom definitions may go here
// Include common definitions from above. // Include common definitions from above.

View File

@@ -17,8 +17,6 @@
import java.util.regex.Pattern import java.util.regex.Pattern
apply plugin: 'com.android.application'
android { android {
compileSdkVersion 30 compileSdkVersion 30

View File

@@ -4,14 +4,14 @@ repositories {
} }
dependencies { dependencies {
implementation 'org.firstinspires.ftc:Inspection:11.2.0' implementation 'org.firstinspires.ftc:Inspection:11.2.1'
implementation 'org.firstinspires.ftc:Blocks:11.2.0' implementation 'org.firstinspires.ftc:Blocks:11.2.1'
implementation 'org.firstinspires.ftc:RobotCore:11.2.0' implementation 'org.firstinspires.ftc:RobotCore:11.2.1'
implementation 'org.firstinspires.ftc:RobotServer:11.2.0' implementation 'org.firstinspires.ftc:RobotServer:11.2.1'
implementation 'org.firstinspires.ftc:OnBotJava:11.2.0' implementation 'org.firstinspires.ftc:OnBotJava:11.2.1'
implementation 'org.firstinspires.ftc:Hardware:11.2.0' implementation 'org.firstinspires.ftc:Hardware:11.2.1'
implementation 'org.firstinspires.ftc:FtcCommon:11.2.0' implementation 'org.firstinspires.ftc:FtcCommon:11.2.1'
implementation 'org.firstinspires.ftc:Vision:11.2.0' implementation 'org.firstinspires.ftc:Vision:11.2.1'
implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.appcompat:appcompat:1.2.0'
} }

View File

@@ -9,10 +9,12 @@ buildscript {
mavenCentral() mavenCentral()
google() google()
} }
dependencies { }
// Note for FTC Teams: Do not modify this yourself.
classpath 'com.android.tools.build:gradle:8.7.0' plugins {
} // Note for FTC Teams: Do not modify this yourself.
id 'com.android.application' version '8.13.2' apply false
id 'com.android.library' version '8.13.2' apply false
} }
// This is now required because aapt2 has to be downloaded from the // This is now required because aapt2 has to be downloaded from the

Binary file not shown.

View File

@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

View File

@@ -1,2 +1,10 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
include ':FtcRobotController' include ':FtcRobotController'
include ':TeamCode' include ':TeamCode'