UntrackMe-app-android-redir.../app/build.gradle

35 lines
1.1 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-19 11:58:50 +01:00
versionCode 6
versionName "1.4.0"
2020-01-25 10:25:02 +01:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
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
}