feat: target sdk 30 w/ build-tool 30.0.3 (#1182)

This commit is contained in:
エリス
2021-04-13 15:34:21 +09:00
committed by GitHub
parent a33044921d
commit dc8854d16c
6 changed files with 14 additions and 14 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.example.anis.myapplication"
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion 30
versionCode 1
versionName "1.0"
}
+1 -1
View File
@@ -26,7 +26,7 @@ var which = require('which');
const { CordovaError } = require('cordova-common');
// This should match /bin/templates/project/build.gradle
const DEFAULT_TARGET_API = 29;
const DEFAULT_TARGET_API = 30;
describe('check_reqs', function () {
let check_reqs;