privacy-friendly-sudoku-fork/app/build.gradle

48 lines
1.4 KiB
Groovy
Raw Normal View History

2015-11-09 11:41:46 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
2015-11-09 11:41:46 +00:00
testOptions {
unitTests.returnDefaultValues = true
}
2015-11-09 11:41:46 +00:00
defaultConfig {
applicationId "org.secuso.privacyfriendlysudoku"
minSdkVersion 16
targetSdkVersion 29
2020-10-09 15:40:16 +00:00
versionCode 10
versionName "3.0.1"
vectorDrawables.useSupportLibrary = true
2015-11-09 11:41:46 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2020-05-09 11:44:37 +00:00
dataBinding {
enabled = true
}
2015-11-09 11:41:46 +00:00
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.preference:preference:1.1.1'
testImplementation 'junit:junit:4.12'
implementation 'androidx.core:core:1.3.2'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.legacy:legacy-support-core-ui:1.0.0'
implementation 'androidx.legacy:legacy-support-core-utils:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
2015-11-09 11:41:46 +00:00
}