2015-11-09 11:41:46 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2020-04-23 10:02:06 +00:00
|
|
|
compileSdkVersion 29
|
2015-11-09 11:41:46 +00:00
|
|
|
|
2015-11-18 12:15:29 +00:00
|
|
|
testOptions {
|
|
|
|
unitTests.returnDefaultValues = true
|
|
|
|
}
|
|
|
|
|
2015-11-09 11:41:46 +00:00
|
|
|
defaultConfig {
|
2016-01-30 11:38:26 +00:00
|
|
|
applicationId "org.secuso.privacyfriendlysudoku"
|
|
|
|
minSdkVersion 16
|
2020-04-23 10:02:06 +00:00
|
|
|
targetSdkVersion 29
|
2020-09-30 23:14:05 +00:00
|
|
|
versionCode 9
|
|
|
|
versionName "3.0.0"
|
2020-04-23 10:02:06 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2015-11-09 11:41:46 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2016-10-15 20:17:18 +00:00
|
|
|
compileOptions {
|
2020-04-23 10:02:06 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2016-10-15 20:17:18 +00:00
|
|
|
}
|
2020-05-09 11:44:37 +00:00
|
|
|
|
|
|
|
dataBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
2015-11-09 11:41:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-04-23 10:02:06 +00:00
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2020-08-20 17:29:17 +00:00
|
|
|
implementation 'androidx.preference:preference:1.1.0-rc01'
|
2020-04-23 10:02:06 +00:00
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
implementation 'androidx.core:core:1.2.0'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
|
implementation 'com.google.android.material:material:1.1.0'
|
|
|
|
implementation 'androidx.legacy:legacy-support-core-ui:1.0.0'
|
|
|
|
implementation 'androidx.legacy:legacy-support-core-utils:1.0.0'
|
2020-05-09 10:19:56 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
|
2015-11-09 11:41:46 +00:00
|
|
|
}
|