Browse Source

android: target API level 29

This will be mandatory later in the year for updating apps and it already is for
new apps.

https://support.google.com/googleplay/android-developer/answer/113469#targetsdk
master
Saúl Ibarra Corretgé 4 years ago
parent
commit
3f33adc5d0
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      android/build.gradle

+ 3
- 3
android/build.gradle View File

@@ -142,10 +142,10 @@ allprojects {
142 142
 }
143 143
 
144 144
 ext {
145
-    buildToolsVersion = "28.0.3"
146
-    compileSdkVersion = 28
145
+    buildToolsVersion = "29.0.3"
146
+    compileSdkVersion = 29
147 147
     minSdkVersion    = 21
148
-    targetSdkVersion = 28
148
+    targetSdkVersion = 29
149 149
     supportLibVersion = "28.0.0"
150 150
 
151 151
     // The Maven artifact groupdId of the third-party react-native modules which

Loading…
Cancel
Save