Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions FtcRobotController/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:versionCode="62"
android:versionName="11.2">
android:versionCode="63"
android:versionName="11.2.1">

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ The readme.md file located in the [/TeamCode/src/main/java/org/firstinspires/ftc

# 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)

### Breaking Changes
Expand Down
3 changes: 2 additions & 1 deletion TeamCode/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
apply plugin: 'com.android.application'

//
// build.gradle in TeamCode
//
Expand All @@ -8,7 +10,6 @@
// please think carefully as to whether such customizations are really necessary
// before doing so.


// Custom definitions may go here

// Include common definitions from above.
Expand Down
2 changes: 0 additions & 2 deletions build.common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

import java.util.regex.Pattern

apply plugin: 'com.android.application'

android {

compileSdkVersion 30
Expand Down
16 changes: 8 additions & 8 deletions build.dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ repositories {
}

dependencies {
implementation 'org.firstinspires.ftc:Inspection:11.2.0'
implementation 'org.firstinspires.ftc:Blocks:11.2.0'
implementation 'org.firstinspires.ftc:RobotCore:11.2.0'
implementation 'org.firstinspires.ftc:RobotServer:11.2.0'
implementation 'org.firstinspires.ftc:OnBotJava:11.2.0'
implementation 'org.firstinspires.ftc:Hardware:11.2.0'
implementation 'org.firstinspires.ftc:FtcCommon:11.2.0'
implementation 'org.firstinspires.ftc:Vision:11.2.0'
implementation 'org.firstinspires.ftc:Inspection:11.2.1'
implementation 'org.firstinspires.ftc:Blocks:11.2.1'
implementation 'org.firstinspires.ftc:RobotCore:11.2.1'
implementation 'org.firstinspires.ftc:RobotServer:11.2.1'
implementation 'org.firstinspires.ftc:OnBotJava:11.2.1'
implementation 'org.firstinspires.ftc:Hardware:11.2.1'
implementation 'org.firstinspires.ftc:FtcCommon:11.2.1'
implementation 'org.firstinspires.ftc:Vision:11.2.1'
implementation 'androidx.appcompat:appcompat:1.2.0'
}

10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ buildscript {
mavenCentral()
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
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
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
zipStorePath=wrapper/dists
8 changes: 8 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}

include ':FtcRobotController'
include ':TeamCode'
Loading