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

Commit 6f8189b

Browse files
Merge pull request #26 from hudl/ImproveGradleCompatibility
Updates build.gradle to conform to Android Studio 3.4 and Gradle 5
2 parents f740639 + 649d598 commit 6f8189b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

android/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ android {
2626
}
2727

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

32-
testCompile 'junit:junit:4.12'
32+
testImplementation 'junit:junit:4.12'
3333

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{
33
"name": "react-native-android-fragment",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"description": "A utility library for facilitating React Native development with Android Fragments.",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)