1
0
mirror of https://framagit.org/tom79/nitterizeme synced 2024-12-12 00:45:43 +01:00
UntrackMe-app-android-redir.../app/build.gradle

45 lines
1.3 KiB
Groovy
Raw Normal View History

2020-01-25 10:25:02 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "app.fedilab.nitterizeme"
minSdkVersion 15
targetSdkVersion 29
2020-02-18 17:37:53 +01:00
versionCode 5
versionName "1.3.1"
2020-01-25 10:25:02 +01:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
2020-02-18 17:37:53 +01:00
flavorDimensions "default"
2020-01-25 10:25:02 +01:00
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
2020-02-18 17:37:53 +01:00
productFlavors {
fdroid {
buildConfigField "boolean", "DONATIONS", "true"
}
playstore {
buildConfigField "boolean", "DONATIONS", "false"
}
}
2020-01-25 10:25:02 +01:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2020-01-25 16:22:40 +01:00
implementation 'androidx.appcompat:appcompat:1.1.0'
2020-01-25 10:25:02 +01:00
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
2020-02-17 18:04:43 +01:00
implementation 'com.google.android.material:material:1.1.0'
2020-01-25 10:25:02 +01:00
testImplementation 'junit:junit:4.12'
2020-01-25 16:22:40 +01:00
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
2020-01-25 10:25:02 +01:00
}