diff --git a/android/build.gradle b/android/build.gradle index a57ab30..a222ff4 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,55 +1,55 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { - buildToolsVersion = "29.0.0" + buildToolsVersion = "30.0.0" minSdkVersion = 26 - compileSdkVersion = 29 - targetSdkVersion = 29 - supportLibVersion = "29.0.0" + compileSdkVersion = 30 + targetSdkVersion = 30 + supportLibVersion = "30.0.0" } repositories { google() jcenter() } dependencies { classpath("com.android.tools.build:gradle:3.4.2") // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files classpath 'com.google.gms:google-services:4.2.0' // Google Services plugin } } subprojects { subproject -> afterEvaluate { project -> if (project.hasProperty("android")) { android { - compileSdkVersion = 29 - buildToolsVersion = "29.0.0" + compileSdkVersion = 30 + buildToolsVersion = "30.0.0" } } } } allprojects { repositories { mavenLocal() maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm url("$rootDir/../node_modules/react-native/android") } maven { // Android JSC is installed from npm url("$rootDir/../node_modules/jsc-android/dist") } google() jcenter() maven { url 'https://maven.google.com' } maven { url 'https://jitpack.io' } } }