42 lines
1.3 KiB
Groovy
42 lines
1.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "24.0.2"
|
|
defaultConfig {
|
|
applicationId "de.fernunihagen.dna.mapmatching"
|
|
minSdkVersion 10
|
|
targetSdkVersion 24
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
jackOptions {
|
|
enabled true
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
compile 'com.android.support:appcompat-v7:24.2.1'
|
|
compile 'com.android.support:support-v4:24.2.1'
|
|
testCompile 'junit:junit:4.12'
|
|
compile files('libs/SecondoInterface.jar')
|
|
compile project(':osmdroid-android-5.5-release')
|
|
compile project(':osmbonuspack_v6.0')
|
|
compile 'com.google.android.gms:play-services-appindexing:8.4.0'
|
|
}
|