Skip to content

Commit

Permalink
Reduce severity of MissingTranslation lint to warning
Browse files Browse the repository at this point in the history
This allows landing PRs and releases even if not all translation files
are up to date. (If a string is missing, the english string is used as
fallback. That's fine, translations should be done on a best-effort
basis.)
  • Loading branch information
dbrgn committed Nov 23, 2020
1 parent 99876b5 commit 71dffce
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,15 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

lintOptions {
warning 'MissingTranslation'
}
}

dependencies {
Expand Down

0 comments on commit 71dffce

Please sign in to comment.