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

44 lines
1.4 KiB
Groovy
Raw Normal View History

2018-02-20 13:54:18 +01:00
apply plugin: 'com.android.application'
android {
2020-07-07 01:48:10 +02:00
compileSdkVersion 29
buildToolsVersion "29.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
2020-07-07 01:48:10 +02:00
targetSdkVersion 29
2020-07-09 14:56:42 +02:00
versionCode 10
versionName "2.1.1"
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
}
2020-07-07 01:48:10 +02:00
buildFeatures {
dataBinding = 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'
2020-07-07 01:48:10 +02:00
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation 'com.google.android.material:material:1.1.0'
testImplementation 'junit:junit:4.13'
2018-02-20 13:54:18 +01:00
}