Skip to content

Commit c96223d

Browse files
committed
šŸ› Fix a compilation issue that was happening due to different versions in build.gradle
1 parent f1d0ea3 commit c96223d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

ā€Žandroid/build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
apply plugin: 'com.android.library'
33

44
android {
5-
compileSdkVersion 24
6-
buildToolsVersion "25.0.3"
5+
compileSdkVersion 26
6+
buildToolsVersion "26.0.2"
77

88
defaultConfig {
99
minSdkVersion 16
10-
targetSdkVersion 24
10+
targetSdkVersion 26
1111
versionCode 1
1212
versionName "1.0"
1313
ndk {
@@ -21,6 +21,8 @@ android {
2121

2222
dependencies {
2323
compile 'com.facebook.react:react-native:0.20.+'
24-
compile 'com.instabug.library:instabug:4.10.2'
24+
compile ('com.instabug.library:instabug:4.10.2'){
25+
exclude group: 'com.android.support'
26+
}
2527

2628
}

0 commit comments

Comments
Ā (0)