FtcRobotController v10.1
This commit is contained in:
@ -14,7 +14,11 @@ android {
|
|||||||
buildConfigField "String", "APP_BUILD_TIME", '"' + (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.ROOT).format(new Date())) + '"'
|
buildConfigField "String", "APP_BUILD_TIME", '"' + (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.ROOT).format(new Date())) + '"'
|
||||||
}
|
}
|
||||||
|
|
||||||
compileSdkVersion 29
|
buildFeatures {
|
||||||
|
buildConfig = true
|
||||||
|
}
|
||||||
|
|
||||||
|
compileSdkVersion 30
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
|
@ -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="56"
|
android:versionCode="57"
|
||||||
android:versionName="10.1">
|
android:versionName="10.1.1">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||||
|
|
||||||
|
21
README.md
21
README.md
@ -6,7 +6,7 @@ This repository contains the public FTC SDK for the INTO THE DEEP (2024-2025) co
|
|||||||
This GitHub repository contains the source code that is used to build an Android app to control a *FIRST* Tech Challenge competition robot. To use this SDK, download/clone the entire project to your local computer.
|
This GitHub repository contains the source code that is used to build an Android app to control a *FIRST* Tech Challenge competition robot. To use this SDK, download/clone the entire project to your local computer.
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
To use this Android Studio project, you will need Android Studio 2021.2 (codename Chipmunk) or later.
|
To use this Android Studio project, you will need Android Studio Ladybug (2024.2) or later.
|
||||||
|
|
||||||
To program your robot in Blocks or OnBot Java, you do not need Android Studio.
|
To program your robot in Blocks or OnBot Java, you do not need Android Studio.
|
||||||
|
|
||||||
@ -59,6 +59,25 @@ The readme.md file located in the [/TeamCode/src/main/java/org/firstinspires/ftc
|
|||||||
|
|
||||||
# Release Information
|
# Release Information
|
||||||
|
|
||||||
|
## Version 10.1.1 (20241102-092223)
|
||||||
|
|
||||||
|
### Breaking Changes
|
||||||
|
|
||||||
|
* Support for Android Studio Ladybug. Requires Android Studio Ladybug.
|
||||||
|
|
||||||
|
### Known Issues
|
||||||
|
|
||||||
|
* Android Studio Ladybug's bundled JDK is version 21. JDK 21 has deprecated support for Java 1.8, and Ladybug will warn on this deprecation.
|
||||||
|
OnBotJava only supports Java 1.8, therefore, in order to ensure that software developed using Android Studio will
|
||||||
|
run within the OnBotJava environment, the targetCompatibility and sourceCompatibility versions for the SDK have been left at VERSION_1_8.
|
||||||
|
FIRST has decided that until it can devote the resources to migrating OnBotJava to a newer version of Java, the deprecation is the
|
||||||
|
lesser of two non-optimal situations.
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
* Added `toString()` method to Pose2D
|
||||||
|
* Added `toString()` method to SparkFunOTOS.Pose2D
|
||||||
|
|
||||||
## Version 10.1 (20240919-122750)
|
## Version 10.1 (20240919-122750)
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
@ -21,7 +21,7 @@ apply plugin: 'com.android.application'
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
|
|
||||||
compileSdkVersion 29
|
compileSdkVersion 30
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
@ -109,10 +109,6 @@ android {
|
|||||||
packagingOptions {
|
packagingOptions {
|
||||||
pickFirst '**/*.so'
|
pickFirst '**/*.so'
|
||||||
}
|
}
|
||||||
sourceSets.main {
|
|
||||||
jni.srcDirs = []
|
|
||||||
jniLibs.srcDir rootProject.file('libs')
|
|
||||||
}
|
|
||||||
ndkVersion '21.3.6528147'
|
ndkVersion '21.3.6528147'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,14 +4,14 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'org.firstinspires.ftc:Inspection:10.1.0'
|
implementation 'org.firstinspires.ftc:Inspection:10.1.1'
|
||||||
implementation 'org.firstinspires.ftc:Blocks:10.1.0'
|
implementation 'org.firstinspires.ftc:Blocks:10.1.1'
|
||||||
implementation 'org.firstinspires.ftc:RobotCore:10.1.0'
|
implementation 'org.firstinspires.ftc:RobotCore:10.1.1'
|
||||||
implementation 'org.firstinspires.ftc:RobotServer:10.1.0'
|
implementation 'org.firstinspires.ftc:RobotServer:10.1.1'
|
||||||
implementation 'org.firstinspires.ftc:OnBotJava:10.1.0'
|
implementation 'org.firstinspires.ftc:OnBotJava:10.1.1'
|
||||||
implementation 'org.firstinspires.ftc:Hardware:10.1.0'
|
implementation 'org.firstinspires.ftc:Hardware:10.1.1'
|
||||||
implementation 'org.firstinspires.ftc:FtcCommon:10.1.0'
|
implementation 'org.firstinspires.ftc:FtcCommon:10.1.1'
|
||||||
implementation 'org.firstinspires.ftc:Vision:10.1.0'
|
implementation 'org.firstinspires.ftc:Vision:10.1.1'
|
||||||
implementation 'androidx.appcompat:appcompat:1.2.0'
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ buildscript {
|
|||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
// Note for FTC Teams: Do not modify this yourself.
|
// Note for FTC Teams: Do not modify this yourself.
|
||||||
classpath 'com.android.tools.build:gradle:7.2.0'
|
classpath 'com.android.tools.build:gradle:8.7.0'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,3 +8,5 @@ android.enableJetifier=false
|
|||||||
|
|
||||||
# Allow Gradle to use up to 1 GB of RAM
|
# Allow Gradle to use up to 1 GB of RAM
|
||||||
org.gradle.jvmargs=-Xmx1024M
|
org.gradle.jvmargs=-Xmx1024M
|
||||||
|
|
||||||
|
android.nonTransitiveRClass=false
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
Reference in New Issue
Block a user