2015-11-09 11:41:46 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 23
|
|
|
|
buildToolsVersion "23.0.2"
|
|
|
|
|
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
|
2015-11-09 11:41:46 +00:00
|
|
|
targetSdkVersion 23
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
compile 'com.android.support:appcompat-v7:23.1.0'
|
|
|
|
compile 'com.android.support:design:23.1.0'
|
2015-11-11 13:28:24 +00:00
|
|
|
compile 'com.android.support:support-v4:23.1.0'
|
2015-11-09 11:41:46 +00:00
|
|
|
}
|