build: bump AGP to 7.1.0-alpha01

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-06-10 01:35:30 +05:30
parent 120f284762
commit 71a20db5e7
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
4 changed files with 10 additions and 10 deletions

View file

@ -21,11 +21,11 @@ dependencies {
} }
android { android {
compileSdkVersion(30) compileSdk = 30
defaultConfig { defaultConfig {
applicationId = "dev.msfjarvis.claw.android" applicationId = "dev.msfjarvis.claw.android"
minSdkVersion(23) minSdk = 23
targetSdkVersion(30) targetSdk = 30
versionCode = 1 versionCode = 1
versionName = "1.0" versionName = "1.0"
} }

View file

@ -6,7 +6,7 @@ buildscript {
} }
dependencies { dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10")
classpath("com.android.tools.build:gradle:4.1.1") classpath("com.android.tools.build:gradle:7.1.0-alpha01")
classpath("com.diffplug.spotless:spotless-plugin-gradle:5.12.5") classpath("com.diffplug.spotless:spotless-plugin-gradle:5.12.5")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.36") classpath("com.google.dagger:hilt-android-gradle-plugin:2.36")
} }

View file

@ -40,10 +40,10 @@ kotlin {
android { android {
buildFeatures { androidResources = true } buildFeatures { androidResources = true }
compileSdkVersion(30) compileSdk = 30
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml") sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
defaultConfig { defaultConfig {
minSdkVersion(23) minSdk = 23
targetSdkVersion(30) targetSdk = 30
} }
} }

View file

@ -40,11 +40,11 @@ kotlin {
} }
android { android {
compileSdkVersion(30) compileSdk = 30
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml") sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
defaultConfig { defaultConfig {
minSdkVersion(23) minSdk = 23
targetSdkVersion(30) targetSdk = 30
consumerProguardFiles("consumer-rules.pro") consumerProguardFiles("consumer-rules.pro")
} }
} }