Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit d0f2b5b

Browse files
committed
Update to 1.0.7 - Update AndroidManifest.xml for 10.2.0 of FTC SDK and 1.0.7 of Pedro
1 parent 94181af commit d0f2b5b

File tree

2 files changed

+36
-36
lines changed

2 files changed

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

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

99
<application
10-
android:allowBackup="true"
11-
android:largeHeap="true"
12-
android:icon="@drawable/ic_launcher"
13-
android:label="@string/app_name"
14-
android:theme="@style/AppThemeRedRC"
15-
android:usesCleartextTraffic="true">
10+
android:allowBackup="true"
11+
android:largeHeap="true"
12+
android:icon="@drawable/ic_launcher"
13+
android:label="@string/app_name"
14+
android:theme="@style/AppThemeRedRC"
15+
android:usesCleartextTraffic="true">
1616

1717
<!-- Indicates to the ControlHubUpdater what the latest version of the Control Hub is that this app supports -->
1818
<meta-data
@@ -21,10 +21,10 @@
2121

2222
<!-- The main robot controller activity -->
2323
<activity android:name="org.firstinspires.ftc.robotcontroller.internal.PermissionValidatorWrapper"
24-
android:screenOrientation="fullUser"
25-
android:configChanges="orientation|screenSize"
26-
android:label="@string/app_name"
27-
android:launchMode="singleTask" >
24+
android:screenOrientation="fullUser"
25+
android:configChanges="orientation|screenSize"
26+
android:label="@string/app_name"
27+
android:launchMode="singleTask" >
2828

2929
<intent-filter>
3030
<category android:name="android.intent.category.LAUNCHER" />
@@ -34,19 +34,19 @@
3434
</activity>
3535

3636
<activity
37-
android:name="org.firstinspires.ftc.robotcontroller.internal.FtcRobotControllerActivity"
38-
android:screenOrientation="fullUser"
39-
android:configChanges="orientation|screenSize"
40-
android:label="@string/app_name"
41-
android:launchMode="singleTask" >
37+
android:name="org.firstinspires.ftc.robotcontroller.internal.FtcRobotControllerActivity"
38+
android:screenOrientation="fullUser"
39+
android:configChanges="orientation|screenSize"
40+
android:label="@string/app_name"
41+
android:launchMode="singleTask" >
4242

4343
<intent-filter>
4444
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
4545
</intent-filter>
4646

4747
<meta-data
48-
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
49-
android:resource="@xml/device_filter" />
48+
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
49+
android:resource="@xml/device_filter" />
5050

5151
<!--org.firstinspires.main.entry indicates that this app is compatible with the Dragonboard Control Hub-->
5252
<meta-data
@@ -56,16 +56,16 @@
5656

5757
<!-- The robot controller service in which most of the robot functionality is managed -->
5858
<service
59-
android:name="com.qualcomm.ftccommon.FtcRobotControllerService"
60-
android:enabled="true" />
59+
android:name="com.qualcomm.ftccommon.FtcRobotControllerService"
60+
android:enabled="true" />
6161

6262

6363
<!-- Assistant that autostarts the robot controller on android boot (if it's supposed to) -->
6464
<receiver
65-
android:enabled="true"
66-
android:exported="true"
67-
android:name="org.firstinspires.ftc.ftccommon.internal.RunOnBoot"
68-
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
65+
android:enabled="true"
66+
android:exported="true"
67+
android:name="org.firstinspires.ftc.ftccommon.internal.RunOnBoot"
68+
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
6969

7070
<intent-filter>
7171
<category android:name="android.intent.category.DEFAULT" />
@@ -76,4 +76,4 @@
7676

7777
</application>
7878

79-
</manifest>
79+
</manifest>

build.dependencies.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ repositories {
88
}
99

1010
dependencies {
11-
implementation 'org.firstinspires.ftc:Inspection:10.1.1'
12-
implementation 'org.firstinspires.ftc:Blocks:10.1.1'
13-
implementation 'org.firstinspires.ftc:RobotCore:10.1.1'
14-
implementation 'org.firstinspires.ftc:RobotServer:10.1.1'
15-
implementation 'org.firstinspires.ftc:OnBotJava:10.1.1'
16-
implementation 'org.firstinspires.ftc:Hardware:10.1.1'
17-
implementation 'org.firstinspires.ftc:FtcCommon:10.1.1'
18-
implementation 'org.firstinspires.ftc:Vision:10.1.1'
19-
implementation 'com.pedropathing:pedro:1.0.6'
11+
implementation 'org.firstinspires.ftc:Inspection:10.2.0'
12+
implementation 'org.firstinspires.ftc:Blocks:10.2.0'
13+
implementation 'org.firstinspires.ftc:RobotCore:10.2.0'
14+
implementation 'org.firstinspires.ftc:RobotServer:10.2.0'
15+
implementation 'org.firstinspires.ftc:OnBotJava:10.2.0'
16+
implementation 'org.firstinspires.ftc:Hardware:10.2.0'
17+
implementation 'org.firstinspires.ftc:FtcCommon:10.2.0'
18+
implementation 'org.firstinspires.ftc:Vision:10.2.0'
19+
implementation 'com.pedropathing:pedro:1.0.7'
2020

2121
//noinspection GradleDependency
2222
implementation 'androidx.appcompat:appcompat:1.2.0'

0 commit comments

Comments
 (0)