Skip to content
This repository was archived by the owner on Oct 5, 2023. It is now read-only.

Commit 649d598

Browse files
author
Marc Bernstein
committed
Revert back to 1.1.0, only changing what's required for Android Studio 3.4
1 parent 3e30496 commit 649d598

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

android/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@ def getLibraryName = { ->
1515
}
1616

1717
android {
18-
compileSdkVersion safeExtGet('compileSdkVersion', 28)
19-
buildToolsVersion safeExtGet('buildToolsVersion', "28.0.3")
18+
compileSdkVersion safeExtGet('compileSdkVersion', 26)
19+
buildToolsVersion safeExtGet('buildToolsVersion', "26.0.3")
2020
defaultConfig {
2121
minSdkVersion 16
22-
targetSdkVersion safeExtGet('targetSdkVersion', 28)
22+
targetSdkVersion safeExtGet('targetSdkVersion', 26)
2323
versionCode 1
2424
versionName getLibraryName()
2525
}
2626
}
2727

2828
dependencies {
2929
implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
30-
implementation "com.android.support:appcompat-v7:${safeExtGet('supportLibVersion', '28.0.0')}"
30+
implementation "com.android.support:appcompat-v7:${safeExtGet('supportLibVersion', '26.1.0')}"
3131

3232
testImplementation 'junit:junit:4.12'
3333

3434
// Android JUnit Runner
35-
androidTestImplementation 'com.android.support.test:runner:1.0.2'
35+
androidTestImplementation 'com.android.support.test:runner:0.5'
3636
// JUnit4 Rules
37-
androidTestImplementation 'com.android.support.test:rules:1.0.2'
37+
androidTestImplementation 'com.android.support.test:rules:0.5'
3838
}

0 commit comments

Comments
 (0)