🐛 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'
android {
compileSdkVersion 24
buildToolsVersion "25.0.3"
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
minSdkVersion 16
targetSdkVersion 24
targetSdkVersion 26
versionCode 1
versionName "1.0"
ndk {
@ -21,6 +21,8 @@ android {
dependencies {
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'
}
}