1
0
mirror of https://gitlab.com/openlp/android.git synced 2024-07-29 11:58:20 +00:00
android/app/build.gradle
2015-01-19 20:26:35 +00:00

28 lines
694 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "org.openlp.android2"
minSdkVersion 15
targetSdkVersion 21
versionCode 2
versionName "2.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:support-v4:21.0.3'
compile 'com.loopj.android:android-async-http:1.4.6'
}