Skip to content
This repository was archived by the owner on Dec 30, 2024. It is now read-only.

Commit e27e884

Browse files
authored
Merge pull request #28 from Invicta8110/master
Merge FTC SDK v10.1.1
2 parents 06431bb + 917c794 commit e27e884

File tree

7 files changed

+21
-19
lines changed

7 files changed

+21
-19
lines changed

FtcRobotController/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ android {
1414
buildConfigField "String", "APP_BUILD_TIME", '"' + (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.ROOT).format(new Date())) + '"'
1515
}
1616

17-
compileSdkVersion 29
17+
buildFeatures {
18+
buildConfig = true
19+
}
20+
21+
compileSdkVersion 30
1822

1923
compileOptions {
2024
sourceCompatibility JavaVersion.VERSION_1_8

FtcRobotController/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
4-
android:versionCode="56"
5-
android:versionName="10.1">
4+
android:versionCode="57"
5+
android:versionName="10.1.1">
66

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

build.common.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ apply plugin: 'com.android.application'
2121

2222
android {
2323

24-
compileSdkVersion 29
24+
compileSdkVersion 30
2525

2626
signingConfigs {
2727
release {
@@ -113,10 +113,6 @@ android {
113113
packagingOptions {
114114
pickFirst '**/*.so'
115115
}
116-
sourceSets.main {
117-
jni.srcDirs = []
118-
jniLibs.srcDir rootProject.file('libs')
119-
}
120116
ndkVersion '21.3.6528147'
121117
}
122118

build.dependencies.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ repositories {
66
}
77

88
dependencies {
9-
implementation 'org.firstinspires.ftc:Inspection:10.1.0'
10-
implementation 'org.firstinspires.ftc:Blocks:10.1.0'
11-
implementation 'org.firstinspires.ftc:RobotCore:10.1.0'
12-
implementation 'org.firstinspires.ftc:RobotServer:10.1.0'
13-
implementation 'org.firstinspires.ftc:OnBotJava:10.1.0'
14-
implementation 'org.firstinspires.ftc:Hardware:10.1.0'
15-
implementation 'org.firstinspires.ftc:FtcCommon:10.1.0'
16-
implementation 'org.firstinspires.ftc:Vision:10.1.0'
9+
implementation 'org.firstinspires.ftc:Inspection:10.1.1'
10+
implementation 'org.firstinspires.ftc:Blocks:10.1.1'
11+
implementation 'org.firstinspires.ftc:RobotCore:10.1.1'
12+
implementation 'org.firstinspires.ftc:RobotServer:10.1.1'
13+
implementation 'org.firstinspires.ftc:OnBotJava:10.1.1'
14+
implementation 'org.firstinspires.ftc:Hardware:10.1.1'
15+
implementation 'org.firstinspires.ftc:FtcCommon:10.1.1'
16+
implementation 'org.firstinspires.ftc:Vision:10.1.1'
1717
implementation 'androidx.appcompat:appcompat:1.2.0'
1818

19-
implementation 'com.acmerobotics.dashboard:dashboard:0.4.5'
19+
implementation 'com.acmerobotics.dashboard:dashboard:0.4.16'
2020
}
2121

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212
dependencies {
1313
// Note for FTC Teams: Do not modify this yourself.
14-
classpath 'com.android.tools.build:gradle:7.2.0'
14+
classpath 'com.android.tools.build:gradle:8.7.0'
1515
}
1616
}
1717

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ android.enableJetifier=false
88

99
# Allow Gradle to use up to 1 GB of RAM
1010
org.gradle.jvmargs=-Xmx1024M
11+
12+
android.nonTransitiveRClass=false
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)