Simple-Calendar/app/build.gradle

30 lines
768 B
Groovy
Raw Normal View History

2016-01-26 22:08:27 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
2016-02-25 22:13:00 +01:00
applicationId "com.simplemobiletools.calendar"
2016-01-26 22:08:27 +01:00
minSdkVersion 16
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.1'
2016-01-26 23:05:09 +01:00
compile 'joda-time:joda-time:2.9.1'
2016-01-28 00:07:44 +01:00
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.github.yukuku:ambilwarna:2.0.1'
2016-01-26 22:08:27 +01:00
}