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
This commit is contained in:
Saúl Ibarra Corretgé 2020-08-10 11:58:35 +02:00 committed by Saúl Ibarra Corretgé
parent d9250aa986
commit 3f33adc5d0
1 changed files with 3 additions and 3 deletions

View File

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