android/app/build.gradle

42 lines
1.0 KiB
Groovy
Raw Normal View History

2014-11-14 16:34:14 +00:00
apply plugin: 'com.android.application'
2015-01-23 17:53:00 +00:00
project.archivesBaseName = 'OpenLP'
2014-11-14 16:34:14 +00:00
android {
2016-10-19 21:43:42 +00:00
compileSdkVersion 25
buildToolsVersion "25"
2014-11-14 16:34:14 +00:00
defaultConfig {
applicationId "org.openlp.android2"
2016-10-19 18:41:22 +00:00
minSdkVersion 16
2016-10-19 21:43:42 +00:00
targetSdkVersion 25
2015-11-15 10:17:08 +00:00
versionCode 5
2014-11-14 16:34:14 +00:00
versionName "2.0"
2016-10-19 20:43:00 +00:00
vectorDrawables.useSupportLibrary = true
2014-11-14 16:34:14 +00:00
}
2015-05-30 05:53:10 +00:00
android {
lintOptions {
ignore 'MissingTranslation'
}
}
2014-11-14 16:34:14 +00:00
buildTypes {
2016-10-19 21:43:42 +00:00
debug {
debuggable true
}
2014-11-14 16:34:14 +00:00
release {
2015-01-19 20:26:35 +00:00
minifyEnabled false
2014-11-14 16:34:14 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2015-09-20 21:02:37 +00:00
testOptions {
unitTests.returnDefaultValues = true
2016-05-15 16:48:52 +00:00
}
2014-11-14 16:34:14 +00:00
2016-05-15 16:48:52 +00:00
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
2016-10-19 21:43:42 +00:00
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:support-v4:25.0.0'
compile 'com.android.support:design:25.0.0'
2015-09-20 21:02:37 +00:00
}
2014-11-14 16:34:14 +00:00
}
2016-05-15 16:48:52 +00:00
dependencies {
compile files('libs/classes.jar')
2015-09-20 21:02:37 +00:00
}