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

41 lines
1.1 KiB
Groovy
Raw Normal View History

2015-11-09 11:41:46 +00:00
apply plugin: 'com.android.application'
android {
2016-11-07 09:47:39 +00:00
compileSdkVersion 25
2018-01-19 16:52:35 +00:00
buildToolsVersion '26.0.3'
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
2016-11-07 09:47:39 +00:00
targetSdkVersion 25
2018-01-19 16:52:35 +00:00
versionCode 6
versionName "2.1.2"
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_7
targetCompatibility JavaVersion.VERSION_1_7
}
2015-11-09 11:41:46 +00:00
}
dependencies {
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
}