🐛 Fix a compilation issue that was happening due to different versions in build.gradle

This commit is contained in:
Salma ElTarzi 2018-02-18 16:35:26 +02:00
parent f1d0ea368c
commit c96223dbd0

View File

@ -2,12 +2,12 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 24 compileSdkVersion 26
buildToolsVersion "25.0.3" buildToolsVersion "26.0.2"
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 24 targetSdkVersion 26
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
ndk { ndk {
@ -21,6 +21,8 @@ android {
dependencies { dependencies {
compile 'com.facebook.react:react-native:0.20.+' compile 'com.facebook.react:react-native:0.20.+'
compile 'com.instabug.library:instabug:4.10.2' compile ('com.instabug.library:instabug:4.10.2'){
exclude group: 'com.android.support'
}
} }