OsmAnd/OsmAndCore-sample/build.gradle

121 lines
2.9 KiB
Groovy
Raw Normal View History

2016-06-15 21:05:12 +02:00
apply plugin: 'com.android.application'
android {
2017-07-10 01:45:21 +02:00
compileSdkVersion 26
buildToolsVersion "26.0.0"
2016-06-15 21:05:12 +02:00
2016-06-22 18:07:32 +02:00
dexOptions {
jumboMode true
}
2016-06-15 21:05:12 +02:00
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
lintOptions {
abortOnError false
}
// This is from OsmAndCore_android.aar - for some reason it's not inherited
aaptOptions {
// Don't compress any embedded resources
noCompress "qz", "png"
2016-06-15 21:05:12 +02:00
}
sourceSets {
main {
manifest.srcFile "AndroidManifest.xml"
jni.srcDirs = []
jniLibs.srcDirs = ["libs"]
java.srcDirs = ["src"]
renderscript.srcDirs = ["src"]
2016-11-12 18:01:03 +01:00
resources.srcDirs = ["src"]
2016-06-15 21:05:12 +02:00
res.srcDirs = ["res"]
assets.srcDirs = ["assets"]
}
}
productFlavors {
x86 {
ndk {
abiFilter "x86"
}
}
mips {
ndk {
abiFilter "mips"
}
}
armv7 {
ndk {
abiFilter "armeabi-v7a"
}
}
armv5 {
ndk {
abiFilter "armeabi"
}
}
fat
}
buildTypes {
debug {
signingConfig android.signingConfigs.debug
}
nativeDebug {
signingConfig android.signingConfigs.debug
}
release {
signingConfig android.signingConfigs.debug
}
}
}
2016-11-12 18:01:03 +01:00
task collectMiscResources(type: Copy) {
into "src/net/osmand/osm"
from("../../resources/poi") {
include "poi_types.xml"
}
}
task collectRegionsInfoResources(type: Copy) {
from "../../resources/countries-info"
into "src/net/osmand/map"
include "regions.ocbf"
}
2016-11-16 19:36:31 +01:00
task collectRoutingResources(type: Sync) {
from "../../resources/routing"
into "src/net/osmand/router"
include "routing.xml"
}
2016-11-12 18:01:03 +01:00
tasks.withType(JavaCompile) {
2016-11-16 19:36:31 +01:00
compileTask -> compileTask.dependsOn << [collectMiscResources, collectRegionsInfoResources, collectRoutingResources]
2016-11-12 18:01:03 +01:00
}
2016-06-15 21:05:12 +02:00
repositories {
ivy {
name = "OsmAndBinariesIvy"
url = "http://builder.osmand.net"
layout "pattern" , {
artifact "ivy/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"
}
}
}
dependencies {
compile project(path: ':OsmAnd-java', configuration: 'android')
2017-07-29 11:44:57 +02:00
compile 'com.android.support:appcompat-v7:25.+'
compile 'com.android.support:design:25.+'
2016-06-15 21:05:12 +02:00
compile fileTree(dir: "libs", include: ["*.jar"])
compile "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar"
debugCompile "net.osmand:OsmAndCore_androidNativeRelease:0.1-SNAPSHOT@aar"
nativeDebugCompile "net.osmand:OsmAndCore_androidNativeDebug:0.1-SNAPSHOT@aar"
releaseCompile "net.osmand:OsmAndCore_androidNativeRelease:0.1-SNAPSHOT@aar"
}