Reenable build failure on lintErrors

This commit is contained in:
edr
2023-10-01 21:32:26 +02:00
parent 3d0cf2444c
commit 9d052fae2f

View File

@@ -8,7 +8,7 @@ android {
minSdkVersion 21 minSdkVersion 21
//noinspection ExpiredTargetSdkVersion //noinspection ExpiredTargetSdkVersion
targetSdkVersion 26 targetSdkVersion 26
versionCode 5 versionCode 10
versionName "1.0" versionName "1.0"
} }
@@ -19,12 +19,13 @@ android {
} }
} }
lintOptions {
abortOnError true
warning "MissingTranslation"
}
dependencies { dependencies {
implementation "com.android.support:support-compat:26.1.0" implementation "com.android.support:support-compat:26.1.0"
} }
namespace 'de.rochefort.childmonitor'
lint {
abortOnError true
warning 'MissingTranslation'
}
} }