Skip to content

Commit f178183

Browse files
authored
Merge pull request #389 from ytai/NoProvideAppcompat
Don't provoide appcompat
2 parents 5ed7ebf + 30e1599 commit f178183

File tree

10 files changed

+17
-3
lines changed

10 files changed

+17
-3
lines changed

IOIOLibAndroid/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ android {
1414

1515
dependencies {
1616
api project(":IOIOLibCore")
17-
api 'androidx.appcompat:appcompat:1.6.1'
17+
implementation 'androidx.appcompat:appcompat:1.6.1'
1818
}
1919

2020
publishing {

applications/HelloIOIO/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ dependencies {
2626
implementation project(':IOIOLibAndroidAccessory')
2727
implementation project(':IOIOLibAndroidDevice')
2828

29+
implementation 'androidx.appcompat:appcompat:1.6.1'
30+
2931
androidTestImplementation "androidx.test.ext:junit-ktx:1.1.5"
3032
androidTestUtil "androidx.test.services:test-services:1.4.2"
3133
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"

applications/HolidayIOIO/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ dependencies {
2626
implementation project(':IOIOLibAndroidDevice')
2727
implementation 'androidx.test:rules:1.5.0'
2828

29+
implementation 'androidx.appcompat:appcompat:1.6.1'
30+
2931
androidTestImplementation "androidx.test.ext:junit-ktx:1.1.5"
3032
androidTestUtil "androidx.test.services:test-services:1.4.2"
3133
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"

applications/IOIOConnectionTesterAndroid/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ dependencies {
1818

1919
implementation project(':IOIOLibAndroidBluetooth')
2020
implementation project(':IOIOLibAndroidAccessory')
21+
22+
implementation 'androidx.appcompat:appcompat:1.6.1'
2123
}
2224

applications/IOIOManager/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ dependencies {
3434
implementation project(':IOIOLibAndroidAccessory')
3535
implementation project(':IOIOLibAndroidDevice')
3636

37+
implementation 'androidx.appcompat:appcompat:1.6.1'
38+
3739
androidTestImplementation "androidx.test.ext:junit-ktx:1.1.5"
3840
androidTestUtil "androidx.test.services:test-services:1.4.2"
3941
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"

applications/IOIOSimpleApp/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ dependencies {
2525
implementation project(':IOIOLibAndroidAccessory')
2626
implementation project(':IOIOLibAndroidDevice')
2727

28+
implementation 'androidx.appcompat:appcompat:1.6.1'
29+
2830
androidTestImplementation "androidx.test.ext:junit-ktx:1.1.5"
2931
androidTestUtil "androidx.test.services:test-services:1.4.2"
3032
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"

applications/IOIOTestBed/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ dependencies {
1616
implementation project(':IOIOLibAndroidBluetooth')
1717
implementation project(':IOIOLibAndroidAccessory')
1818
implementation project(':IOIOLibAndroidDevice')
19+
20+
implementation 'androidx.appcompat:appcompat:1.6.1'
1921
}

applications/IOIOTortureTest/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ dependencies {
1616
implementation project(':IOIOLibAndroidBluetooth')
1717
implementation project(':IOIOLibAndroidAccessory')
1818
implementation project(':IOIOLibAndroidDevice')
19+
20+
implementation 'androidx.appcompat:appcompat:1.6.1'
1921
}

applications/ShoeBot/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@ android {
1515
dependencies {
1616
implementation project(':IOIOLibAndroidBluetooth')
1717
implementation project(':IOIOLibAndroidAccessory')
18+
19+
implementation 'androidx.appcompat:appcompat:1.6.1'
1820
}

build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ allprojects {
1717
version = getTag()
1818
ext.versionNamespace = 'IOIO'
1919
ext.versionString = sprintf("%s%s", versionNamespace, version)
20-
}
2120

22-
subprojects {
2321
apply plugin: 'maven-publish'
2422
apply plugin: 'signing'
2523

0 commit comments

Comments
 (0)