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-12-07 09:43:38 +01:00
compileSdkVersion 30
buildToolsVersion "30.0.2"
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-12-07 09:43:38 +01:00
targetSdkVersion 30
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'
})
2020-12-07 09:43:38 +01:00
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
2020-07-07 01:48:10 +02:00
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
2020-12-07 09:43:38 +01:00
implementation 'com.google.android.material:material:1.2.1'
testImplementation 'junit:junit:4.13.1'
2018-02-20 13:54:18 +01:00
}