diff --git a/.appveyor/config.yml b/.appveyor/config.yml index ed8162cf135899..88bbccba8dd06b 100644 --- a/.appveyor/config.yml +++ b/.appveyor/config.yml @@ -2,7 +2,7 @@ environment: ANDROID_HOME: "C:\\android-sdk-windows" ANDROID_NDK: "C:\\android-sdk-windows\\android-ndk-r19c" ANDROID_BUILD_VERSION: 28 - ANDROID_TOOLS_VERSION: 28.0.3 + ANDROID_TOOLS_VERSION: 29.0.2 GRADLE_OPTS: -Dorg.gradle.daemon=false diff --git a/.circleci/Dockerfiles/Dockerfile.android b/.circleci/Dockerfiles/Dockerfile.android index 65e6c07d9d4a39..431f802e3566dc 100644 --- a/.circleci/Dockerfiles/Dockerfile.android +++ b/.circleci/Dockerfiles/Dockerfile.android @@ -14,7 +14,7 @@ # and build a Android application that can be used to run the # tests specified in the scripts/ directory. # -FROM reactnativecommunity/react-native-android:2019-9-4 +FROM reactnativecommunity/react-native-android:2019-10-18 LABEL Description="React Native Android Test Image" LABEL maintainer="Héctor Ramos " diff --git a/.circleci/config.yml b/.circleci/config.yml index eec9cddbf1106c..dcdade1ef2f52f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,7 +23,7 @@ executors: reactnativeandroid: <<: *defaults docker: - - image: reactnativecommunity/react-native-android:2019-9-4 + - image: reactnativecommunity/react-native-android:2019-10-18 resource_class: "large" environment: - TERM: "dumb" diff --git a/ReactAndroid/build.gradle b/ReactAndroid/build.gradle index 42675dd0d8fec5..78a0a0d90f17b0 100644 --- a/ReactAndroid/build.gradle +++ b/ReactAndroid/build.gradle @@ -374,7 +374,7 @@ task extractJNIFiles { } android { - compileSdkVersion 28 + compileSdkVersion 29 compileOptions { sourceCompatibility(JavaVersion.VERSION_1_8) diff --git a/scripts/.tests.env b/scripts/.tests.env index 3a6f63061da411..3f766fee43f841 100644 --- a/scripts/.tests.env +++ b/scripts/.tests.env @@ -4,7 +4,7 @@ ## ANDROID ## # Android SDK Build Tools revision -export ANDROID_SDK_BUILD_TOOLS_REVISION=28.0.3 +export ANDROID_SDK_BUILD_TOOLS_REVISION=29.0.2 # Android API Level we build with export ANDROID_SDK_BUILD_API_LEVEL="28" # Google APIs for Android level diff --git a/template/android/build.gradle b/template/android/build.gradle index da1a4c7565de61..b9065bd4984929 100644 --- a/template/android/build.gradle +++ b/template/android/build.gradle @@ -2,10 +2,10 @@ buildscript { ext { - buildToolsVersion = "28.0.3" + buildToolsVersion = "29.0.2" minSdkVersion = 16 - compileSdkVersion = 28 - targetSdkVersion = 28 + compileSdkVersion = 29 + targetSdkVersion = 29 } repositories { google()