Skip to content

Commit

Permalink
fix: Fix deprecations and disable warnings for missing translations
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Niedermann <[email protected]>
  • Loading branch information
stefan-niedermann committed Jan 19, 2024
1 parent f6099d6 commit 4366590
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_17
Expand All @@ -32,6 +33,11 @@ android {
kotlinOptions {
jvmTarget = '17'
}

lint {
abortOnError false
disable 'MissingTranslation'
}
}

dependencies {
Expand Down

0 comments on commit 4366590

Please sign in to comment.