compileSdkVersion and targetSdkVersion upgraded to 31

This commit is contained in:
Carlos Erazo 2022-03-08 10:18:51 +01:00
parent aa1e907356
commit 4f28ba5bbe
3 changed files with 9 additions and 9 deletions

View File

@ -4,25 +4,25 @@ version '1.0-SNAPSHOT'
buildscript { buildscript {
repositories { repositories {
google() google()
jcenter() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.6.3' classpath 'com.android.tools.build:gradle:3.6.4'
} }
} }
rootProject.allprojects { rootProject.allprojects {
repositories { repositories {
google() google()
jcenter() mavenCentral()
} }
} }
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 30 compileSdkVersion 31
defaultConfig { defaultConfig {
minSdkVersion 17 minSdkVersion 17

View File

@ -30,7 +30,7 @@ android {
targetCompatibility 1.8 targetCompatibility 1.8
} }
compileSdkVersion 30 compileSdkVersion 31
lintOptions { lintOptions {
disable 'InvalidPackage' disable 'InvalidPackage'
@ -40,7 +40,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.pichillilorenzo.flutter_inappwebviewexample" applicationId "com.pichillilorenzo.flutter_inappwebviewexample"
minSdkVersion 17 minSdkVersion 17
targetSdkVersion 30 targetSdkVersion 31
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

View File

@ -1,18 +1,18 @@
buildscript { buildscript {
repositories { repositories {
google() google()
jcenter() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:4.0.1' classpath 'com.android.tools.build:gradle:4.0.2'
} }
} }
allprojects { allprojects {
repositories { repositories {
google() google()
jcenter() mavenCentral()
} }
} }