android/app/build.gradle

42 lines
1.0 KiB
Groovy

apply plugin: 'com.android.application'
project.archivesBaseName = 'OpenLP'
android {
compileSdkVersion 25
buildToolsVersion "25"
defaultConfig {
applicationId "org.openlp.android2"
minSdkVersion 16
targetSdkVersion 25
versionCode 5
versionName "2.0"
vectorDrawables.useSupportLibrary = true
}
android {
lintOptions {
ignore 'MissingTranslation'
}
}
buildTypes {
debug {
debuggable true
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
testOptions {
unitTests.returnDefaultValues = true
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
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'
}
}
dependencies {
compile files('libs/classes.jar')
}