Ignore missing translations

This commit is contained in:
luca0N! 2021-04-01 20:05:11 -03:00
parent 8617e0aba6
commit 7bc21accae
Signed by: luca0N
GPG Key ID: 2E7B4655CF16D7D6
1 changed files with 36 additions and 39 deletions

View File

@ -3,13 +3,16 @@ apply plugin: 'com.android.application'
android { android {
compileSdkVersion 29 compileSdkVersion 29
lintOptions {
disable 'MissingTranslation'
}
defaultConfig { defaultConfig {
applicationId "com.luca0n.joguitos.pluck" applicationId "com.luca0n.joguitos.pluck"
minSdkVersion 19 minSdkVersion 19
targetSdkVersion 29 targetSdkVersion 29
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
buildTypes { buildTypes {
@ -46,10 +49,4 @@ dependencies {
implementation 'com.google.code.gson:gson:2.8.5' implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.mikepenz:aboutlibraries:6.2.0' implementation 'com.mikepenz:aboutlibraries:6.2.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2'
androidTestImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2'
androidTestImplementation 'androidx.test:core:1.0.0'
androidTestImplementation 'androidx.test:runner:1.1.0'
androidTestImplementation 'androidx.test.ext:junit:1.0.0'
} }