0
0
mirror of https://github.com/TrianguloY/UrlChecker.git synced 2024-09-20 04:12:14 +02:00
UrlChecker/app/build.gradle
TrianguloY c286a867ce V 2.8
- Renamed app from 'Url Checker' to 'URLCheck'
- New japanese translation. Thanks to 404potato!
- New Pattern Checker samples and improvements
- New setting to sort apps per-domain
- New setting to close after sharing
- New setting to hide the source app (referrer)
- Allow disabling all modules
- Improved About activity
- Internal tooling improvements
2022-10-29 00:05:50 +02:00

52 lines
1.3 KiB
Groovy

plugins {
id 'com.android.application'
id 'com.github.triplet.play' version '3.7.0'
}
android {
namespace 'com.trianguloy.urlchecker'
compileSdkVersion 32
defaultConfig {
applicationId "com.trianguloy.urlchecker"
minSdkVersion 14
targetSdkVersion 32
versionCode 19
versionName "2.8"
}
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
}
}
play {
track.set("beta")
releaseName.set(android.defaultConfig.versionName + " (" + android.defaultConfig.versionCode + ")")
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
}