diff --git a/FtcRobotController/build.gradle b/FtcRobotController/build.gradle index de6d53f..1ec0503 100644 --- a/FtcRobotController/build.gradle +++ b/FtcRobotController/build.gradle @@ -13,7 +13,7 @@ android { buildConfigField "String", "BUILD_TIME", '"' + (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.ROOT).format(new Date())) + '"' } - compileSdkVersion 28 + compileSdkVersion 29 compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 diff --git a/FtcRobotController/build.release.gradle b/FtcRobotController/build.release.gradle index 2bc4748..8857869 100644 --- a/FtcRobotController/build.release.gradle +++ b/FtcRobotController/build.release.gradle @@ -1,10 +1,10 @@ dependencies { - implementation 'org.firstinspires.ftc:Inspection:6.0.1' - implementation 'org.firstinspires.ftc:Blocks:6.0.1' - implementation 'org.firstinspires.ftc:RobotCore:6.0.1' - implementation 'org.firstinspires.ftc:RobotServer:6.0.1' - implementation 'org.firstinspires.ftc:OnBotJava:6.0.1' - implementation 'org.firstinspires.ftc:Hardware:6.0.1' - implementation 'org.firstinspires.ftc:FtcCommon:6.0.1' + implementation 'org.firstinspires.ftc:Inspection:6.1.1' + implementation 'org.firstinspires.ftc:Blocks:6.1.1' + implementation 'org.firstinspires.ftc:RobotCore:6.1.1' + implementation 'org.firstinspires.ftc:RobotServer:6.1.1' + implementation 'org.firstinspires.ftc:OnBotJava:6.1.1' + implementation 'org.firstinspires.ftc:Hardware:6.1.1' + implementation 'org.firstinspires.ftc:FtcCommon:6.1.1' implementation 'androidx.appcompat:appcompat:1.2.0' } diff --git a/FtcRobotController/src/main/AndroidManifest.xml b/FtcRobotController/src/main/AndroidManifest.xml index e4755ea..cb1e8d2 100644 --- a/FtcRobotController/src/main/AndroidManifest.xml +++ b/FtcRobotController/src/main/AndroidManifest.xml @@ -2,8 +2,8 @@ + android:versionCode="39" + android:versionName="6.1"> @@ -13,7 +13,8 @@ android:extractNativeLibs="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" - android:theme="@style/AppThemeRedRC" > + android:theme="@style/AppThemeRedRC" + android:usesCleartextTraffic="true"> - **HD Hex motors (all gearboxes):** - Velocity PIDF values: `P = 1.17`, `I = 0.117`, `F = 11.7` - Position PIDF values: `P = 5.0` - **Core Hex motor:** - Velocity PIDF values: `P = 4.96`, `I = 0.496`, `F = 49.6` + **HD Hex motors (all gearboxes):** + Velocity PIDF values: `P = 1.17`, `I = 0.117`, `F = 11.7` + Position PIDF values: `P = 5.0` + **Core Hex motor:** + Velocity PIDF values: `P = 4.96`, `I = 0.496`, `F = 49.6` Position PIDF values: `P = 5.0` ### New features @@ -94,7 +113,7 @@ For technical questions regarding the Control System or the FTC SDK, please visi * Removes IR readings and calculations not meant for the Broadcom sensor chip ### Bug fixes -* Improved reliability of BNO055IMU IMU initialization to prevent random initialization failures (which manifested as `Problem with 'imu'`). +* Improves reliability of BNO055IMU IMU initialization to prevent random initialization failures (which manifested as `Problem with 'imu'`). ## Version 5.5 (20200824-090813) diff --git a/TeamCode/build.release.gradle b/TeamCode/build.release.gradle index 6215832..f95f756 100644 --- a/TeamCode/build.release.gradle +++ b/TeamCode/build.release.gradle @@ -1,8 +1,8 @@ dependencies { implementation project(':FtcRobotController') - implementation 'org.firstinspires.ftc:RobotCore:6.0.1' - implementation 'org.firstinspires.ftc:Hardware:6.0.1' - implementation 'org.firstinspires.ftc:FtcCommon:6.0.1' + implementation 'org.firstinspires.ftc:RobotCore:6.1.1' + implementation 'org.firstinspires.ftc:Hardware:6.1.1' + implementation 'org.firstinspires.ftc:FtcCommon:6.1.1' implementation (name: 'tfod-release', ext:'aar') implementation (name: 'tensorflow-lite-0.0.0-nightly', ext:'aar') } diff --git a/build.common.gradle b/build.common.gradle index 2081459..690926d 100644 --- a/build.common.gradle +++ b/build.common.gradle @@ -21,7 +21,7 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 28 + compileSdkVersion 29 signingConfigs { debug {