From 7bc21accaede4c195efe0351f0ca94c778a1caf2 Mon Sep 17 00:00:00 2001 From: luca0N! Date: Thu, 1 Apr 2021 20:05:11 -0300 Subject: [PATCH] Ignore missing translations --- app/build.gradle | 75 +++++++++++++++++++++++------------------------- 1 file changed, 36 insertions(+), 39 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7d026a6..f87e8a4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,55 +1,52 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 29 + compileSdkVersion 29 - defaultConfig { - applicationId "com.luca0n.joguitos.pluck" - minSdkVersion 19 - targetSdkVersion 29 - versionCode 1 - versionName "1.0" - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - } + lintOptions { + disable 'MissingTranslation' + } - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' - } - } + defaultConfig { + applicationId "com.luca0n.joguitos.pluck" + minSdkVersion 19 + targetSdkVersion 29 + versionCode 1 + versionName "1.0" + } - compileOptions { - encoding = 'UTF-8' - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + compileOptions { + encoding = 'UTF-8' + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } } ext { - butterknife = '10.2.3' + butterknife = '10.2.3' } dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.annotation:annotation:1.0.0' - implementation 'androidx.appcompat:appcompat:1.0.2' - implementation 'androidx.cardview:cardview:1.0.0' - implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2' - implementation 'androidx.legacy:legacy-preference-v14:1.0.0' - implementation 'androidx.legacy:legacy-support-v4:1.0.0' - implementation 'androidx.recyclerview:recyclerview:1.0.0' + implementation 'androidx.annotation:annotation:1.0.0' + implementation 'androidx.appcompat:appcompat:1.0.2' + implementation 'androidx.cardview:cardview:1.0.0' + implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2' + implementation 'androidx.legacy:legacy-preference-v14:1.0.0' + implementation 'androidx.legacy:legacy-support-v4:1.0.0' + implementation 'androidx.recyclerview:recyclerview:1.0.0' - implementation "com.jakewharton:butterknife:${butterknife}" - annotationProcessor "com.jakewharton:butterknife-compiler:${butterknife}" + implementation "com.jakewharton:butterknife:${butterknife}" + annotationProcessor "com.jakewharton:butterknife-compiler:${butterknife}" - implementation 'com.google.code.gson:gson:2.8.5' - 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' + implementation 'com.google.code.gson:gson:2.8.5' + implementation 'com.mikepenz:aboutlibraries:6.2.0' }