apply plugin: 'com.android.application' android { namespace 'com.trianguloy.urlchecker' compileSdkVersion 32 defaultConfig { applicationId "com.trianguloy.urlchecker" minSdkVersion 14 targetSdkVersion 32 versionCode 16 versionName "2.7" } buildTypes { release { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } alpha { initWith(buildTypes.debug) applicationIdSuffix '.alpha' versionNameSuffix '-ALPHA' } } lint { // users are free to update translations whenever // this mean that they are not usually up to date // and that there are usually lots of missing translations // so we ignore missing strings disable 'MissingTranslation' } compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) }