exodus-privacy-android-app/app/build.gradle

43 lines
1.3 KiB
Groovy
Raw Normal View History

2018-02-20 13:54:18 +01:00
apply plugin: 'com.android.application'
android {
2019-01-09 16:42:55 +01:00
compileSdkVersion 28
buildToolsVersion "28.0.3"
2018-02-20 13:54:18 +01:00
defaultConfig {
applicationId "org.eu.exodus_privacy.exodusprivacy"
2019-11-20 23:08:51 +01:00
minSdkVersion 17
2019-01-09 16:42:55 +01:00
targetSdkVersion 28
2019-11-21 01:37:06 +01:00
versionCode 8
versionName "2.0.0"
2018-02-20 13:54:18 +01:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2018-04-12 12:25:35 +02:00
lintOptions {
disable 'MissingTranslation'
}
2018-02-20 13:54:18 +01:00
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dataBinding {
enabled = true
}
2018-02-20 13:54:18 +01:00
}
dependencies {
2019-01-09 16:42:55 +01:00
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
2018-02-20 13:54:18 +01:00
exclude group: 'com.android.support', module: 'support-annotations'
})
2019-10-03 15:10:59 +02:00
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
2019-01-09 16:42:55 +01:00
testImplementation 'junit:junit:4.12'
2018-02-20 13:54:18 +01:00
}