diff --git a/build.gradle b/build.gradle index 5db38d8..f69d704 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,12 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 23 - buildToolsVersion "23.0.2" + compileSdkVersion 31 + buildToolsVersion "31.0.0" defaultConfig { minSdkVersion 15 - targetSdkVersion 23 + targetSdkVersion 31 versionCode 1 versionName "1.0" } @@ -34,8 +34,8 @@ buildscript { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:23.1.1' - compile 'com.facebook.react:react-native:+' + implementation fileTree(dir: 'libs', include: ['*.jar']) + testImplementation 'junit:junit:4.12' + implementation 'com.android.support:appcompat-v7:23.1.1' + implementation 'com.facebook.react:react-native:+' }