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

@ -1,55 +1,52 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 29 compileSdkVersion 29
defaultConfig { lintOptions {
applicationId "com.luca0n.joguitos.pluck" disable 'MissingTranslation'
minSdkVersion 19 }
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes { defaultConfig {
release { applicationId "com.luca0n.joguitos.pluck"
minifyEnabled false minSdkVersion 19
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' targetSdkVersion 29
} versionCode 1
} versionName "1.0"
}
compileOptions { buildTypes {
encoding = 'UTF-8' release {
sourceCompatibility JavaVersion.VERSION_1_8 minifyEnabled false
targetCompatibility JavaVersion.VERSION_1_8 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
} }
}
compileOptions {
encoding = 'UTF-8'
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
} }
ext { ext {
butterknife = '10.2.3' butterknife = '10.2.3'
} }
dependencies { dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.annotation:annotation:1.0.0' implementation 'androidx.annotation:annotation:1.0.0'
implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
implementation 'androidx.legacy:legacy-preference-v14:1.0.0' implementation 'androidx.legacy:legacy-preference-v14:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation "com.jakewharton:butterknife:${butterknife}" implementation "com.jakewharton:butterknife:${butterknife}"
annotationProcessor "com.jakewharton:butterknife-compiler:${butterknife}" annotationProcessor "com.jakewharton:butterknife-compiler:${butterknife}"
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'
} }