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 {
|
2015-05-30 08:07:36 +00:00
|
|
|
compileSdkVersion 22
|
2015-01-19 20:26:35 +00:00
|
|
|
buildToolsVersion "21.1.2"
|
2014-11-14 16:34:14 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.openlp.android2"
|
2015-01-19 20:26:35 +00:00
|
|
|
minSdkVersion 15
|
2015-05-30 08:07:36 +00:00
|
|
|
targetSdkVersion 22
|
2015-11-15 10:17:08 +00:00
|
|
|
versionCode 5
|
2014-11-14 16:34:14 +00:00
|
|
|
versionName "2.0"
|
|
|
|
}
|
2015-05-30 05:53:10 +00:00
|
|
|
android {
|
|
|
|
lintOptions {
|
|
|
|
ignore 'MissingTranslation'
|
|
|
|
}
|
|
|
|
}
|
2014-11-14 16:34:14 +00:00
|
|
|
buildTypes {
|
|
|
|
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
|
2014-11-14 16:34:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-01-19 20:26:35 +00:00
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
2015-10-08 15:30:54 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:22.2.1'
|
|
|
|
compile 'com.android.support:support-v4:22.2.1'
|
|
|
|
compile 'com.android.support:design:22.2.1'
|
2014-11-14 16:34:14 +00:00
|
|
|
compile 'com.loopj.android:android-async-http:1.4.6'
|
2015-09-20 21:02:37 +00:00
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
testCompile 'org.easytesting:fest:1.0.16'
|
|
|
|
testCompile 'com.squareup:fest-android:1.0.8'
|
|
|
|
testCompile('org.robolectric:robolectric:3.0-rc2') {
|
|
|
|
exclude group: 'commons-logging', module: 'commons-logging'
|
|
|
|
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
|
|
|
|
}
|
2014-11-14 16:34:14 +00:00
|
|
|
}
|
2015-09-20 21:02:37 +00:00
|
|
|
}
|