Skip to content

Commit

Permalink
Update AGP
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilInsultGenerator committed Jul 22, 2022
1 parent e7ee946 commit 03e8555
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
19 changes: 9 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ android {
}
}

lintOptions {
abortOnError false
checkReleaseBuilds true
disable 'MissingTranslation', 'GoogleAppIndexingWarning'
}

compileSdkVersion 31
buildToolsVersion "31.0.0"
Expand Down Expand Up @@ -50,14 +45,13 @@ android {
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}

packagingOptions {
pickFirst 'META-INF/core_debug.kotlin_module'
pickFirst 'META-INF/core_release.kotlin_module'
pickFirst 'META-INF/library_debug.kotlin_module'
pickFirst 'META-INF/library_release.kotlin_module'
resources {
pickFirsts += ['META-INF/core_debug.kotlin_module', 'META-INF/core_release.kotlin_module', 'META-INF/library_debug.kotlin_module', 'META-INF/library_release.kotlin_module']
}
}


compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
Expand All @@ -66,6 +60,11 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
lint {
abortOnError false
checkReleaseBuilds true
disable 'MissingTranslation', 'GoogleAppIndexingWarning'
}
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'com.android.tools.build:gradle:7.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip

0 comments on commit 03e8555

Please sign in to comment.