2015-11-09 11:41:46 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2016-11-07 09:47:39 +00:00
|
|
|
compileSdkVersion 25
|
2017-06-29 13:37:34 +00:00
|
|
|
buildToolsVersion '25.0.3'
|
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
|
2016-11-07 09:47:39 +00:00
|
|
|
targetSdkVersion 25
|
2017-06-29 13:37:34 +00:00
|
|
|
versionCode 5
|
|
|
|
versionName "2.1.1"
|
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 {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2015-11-09 11:41:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-10-15 20:17:18 +00:00
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
2015-11-09 11:41:46 +00:00
|
|
|
testCompile 'junit:junit:4.12'
|
2017-06-29 13:37:34 +00:00
|
|
|
compile 'com.android.support:support-compat:25.3.1'
|
|
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
|
|
compile 'com.android.support:support-v13:25.3.1'
|
|
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
|
|
compile 'com.android.support:design:25.3.1'
|
|
|
|
compile 'com.android.support:support-core-ui:25.3.1'
|
|
|
|
compile 'com.android.support:support-core-utils:25.3.1'
|
2015-11-09 11:41:46 +00:00
|
|
|
}
|