Skip to content

Commit

Permalink
Upgraded Android Gradle plugin to 7.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Mar 7, 2022
1 parent 1949107 commit a712130
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.1'
classpath 'com.android.tools.build:gradle:7.1.2'
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.0"
classpath 'com.adarshr:gradle-test-logger-plugin:2.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Expand Down
15 changes: 8 additions & 7 deletions omniNotes/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,13 @@ android {
unitTests.returnDefaultValues = true
animationsDisabled = true
}

packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
resources {
excludes += ['META-INF/LICENSE.txt', 'META-INF/NOTICE.txt']
}
}


buildTypes {
debug {
testCoverageEnabled true
Expand Down Expand Up @@ -102,10 +103,6 @@ android {
}
}

lintOptions {
abortOnError false
disable 'MissingTranslation'
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
Expand All @@ -115,6 +112,10 @@ android {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
}
lint {
abortOnError false
disable 'MissingTranslation'
}
}

dependencies {
Expand Down

0 comments on commit a712130

Please sign in to comment.