441 lines
12 KiB
Groovy
441 lines
12 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
// Global Parameters accepted
|
|
// TARGET_APP_NAME - app name
|
|
// APK_NUMBER_VERSION - version number of apk
|
|
// APK_VERSION_SUFFIX - build number like #99999Z, appended (for dev builds) to Manifest's versionName as X.X.X#99999Z
|
|
// Z means flavor: M=-master, D=-main-default, B=-Blackberry, Des=-design, MQA=-main-qt-arm, MQDA=-main-qt-default-arm, S=-sherpafy
|
|
// APP_EDITION - date stamp of builds
|
|
// APP_FEATURES - features +play_market +gps_status -parking_plugin -blackberry -free_version -amazon
|
|
|
|
// 1. To be done Filter fonts
|
|
// <unzip src="OsmAndCore_android.aar" dest=".">
|
|
// <patternset>
|
|
// <include name="assets/**/map/fonts/OpenSans/*"/>
|
|
// <include name="assets/**/map/fonts/NotoSans/*"/>
|
|
// </patternset>
|
|
// </unzip>
|
|
// Less important
|
|
|
|
// Configure eclipse-aar plugin
|
|
def analytics = (!System.getenv("APP_FEATURES") || System.getenv("APP_FEATURES").contains("+play_market")) &&
|
|
getGradle().getStartParameter().getTaskRequests().toString().contains("Free")
|
|
|
|
|
|
|
|
|
|
task printc {
|
|
configurations.each { if(it.isCanBeResolved()) println it.name }
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion "27.0.3"
|
|
|
|
signingConfigs {
|
|
development {
|
|
storeFile file("../keystores/debug.keystore")
|
|
storePassword "android"
|
|
keyAlias "androiddebugkey"
|
|
keyPassword "android"
|
|
}
|
|
|
|
publishing {
|
|
storeFile file("/var/lib/jenkins/osmand_key")
|
|
storePassword System.getenv("OSMAND_APK_PASSWORD")
|
|
keyAlias "osmand"
|
|
keyPassword System.getenv("OSMAND_APK_PASSWORD")
|
|
}
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion System.getenv("MIN_SDK_VERSION") ? System.getenv("MIN_SDK_VERSION").toInteger() :
|
|
(analytics ? 15 : 14)
|
|
targetSdkVersion 26
|
|
versionCode 330
|
|
versionCode System.getenv("APK_NUMBER_VERSION") ? System.getenv("APK_NUMBER_VERSION").toInteger() : versionCode
|
|
multiDexEnabled true
|
|
versionName "3.3.0"
|
|
versionName System.getenv("APK_VERSION")? System.getenv("APK_VERSION").toString(): versionName
|
|
versionName System.getenv("APK_VERSION_SUFFIX")? versionName + System.getenv("APK_VERSION_SUFFIX").toString(): versionName
|
|
}
|
|
|
|
lintOptions {
|
|
lintConfig file("lint.xml")
|
|
abortOnError false
|
|
warningsAsErrors false
|
|
}
|
|
|
|
bundle {
|
|
language {
|
|
// Specifies that the app bundle should not support
|
|
// configuration APKs for language resources. These
|
|
// resources are instead packaged with each base and
|
|
// dynamic feature APK.
|
|
enableSplit = false
|
|
}
|
|
}
|
|
|
|
// related to kuromoji
|
|
//packagingOptions {
|
|
// exclude '/META-INF/CONTRIBUTORS.md'
|
|
// exclude '/META-INF/LICENSE.md'
|
|
// exclude '/META-INF/NOTICE.md'
|
|
//}
|
|
|
|
// This is from OsmAndCore_android.aar - for some reason it's not inherited
|
|
aaptOptions {
|
|
// Don't compress any embedded resources
|
|
noCompress "qz"
|
|
cruncherEnabled = false
|
|
}
|
|
|
|
dexOptions {
|
|
javaMaxHeapSize "4g"
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile "AndroidManifest.xml"
|
|
jni.srcDirs = []
|
|
jniLibs.srcDirs = ["libs"]
|
|
aidl.srcDirs = ["src"]
|
|
java.srcDirs = ["src"]
|
|
resources.srcDirs = ["src"]
|
|
renderscript.srcDirs = ["src"]
|
|
res.srcDirs = ["res"]
|
|
assets.srcDirs = ["assets"]
|
|
}
|
|
debug {
|
|
manifest.srcFile "AndroidManifest-debug.xml"
|
|
}
|
|
free {
|
|
manifest.srcFile "AndroidManifest-free.xml"
|
|
}
|
|
freedev {
|
|
manifest.srcFile "AndroidManifest-freedev.xml"
|
|
}
|
|
freecustom {
|
|
manifest.srcFile "AndroidManifest-freecustom.xml"
|
|
}
|
|
|
|
legacy {
|
|
jniLibs.srcDirs = ["libc++"]
|
|
}
|
|
}
|
|
|
|
flavorDimensions "version", "coreversion", "abi"
|
|
productFlavors {
|
|
// ABI
|
|
armv7 {
|
|
dimension "abi"
|
|
ndk {
|
|
abiFilter 'armeabi-v7a'
|
|
}
|
|
}
|
|
arm64 {
|
|
dimension "abi"
|
|
ndk {
|
|
abiFilter 'arm64-v8a'
|
|
}
|
|
}
|
|
x86 {
|
|
dimension "abi"
|
|
ndk {
|
|
abiFilter 'x86'
|
|
}
|
|
}
|
|
fat {
|
|
dimension "abi"
|
|
ndk {
|
|
abiFilters 'arm64-v8a', 'x86', 'armeabi-v7a'
|
|
}
|
|
}
|
|
|
|
// Version
|
|
freedev {
|
|
dimension "version"
|
|
applicationId "net.osmand.dev"
|
|
// resConfig "en"
|
|
}
|
|
free {
|
|
dimension "version"
|
|
applicationId "net.osmand"
|
|
}
|
|
freeres {
|
|
dimension "version"
|
|
applicationId "net.osmand"
|
|
resConfig "en"
|
|
}
|
|
freecustom {
|
|
dimension "version"
|
|
applicationId "net.osmand.freecustom"
|
|
}
|
|
full {
|
|
dimension "version"
|
|
applicationId "net.osmand.plus"
|
|
}
|
|
fulldev {
|
|
dimension "version"
|
|
applicationId "net.osmand.plus"
|
|
resConfig "en"
|
|
//resConfigs "xxhdpi", "nodpi"
|
|
}
|
|
|
|
// CoreVersion
|
|
legacy {
|
|
dimension "coreversion"
|
|
}
|
|
|
|
qtcore {
|
|
dimension "coreversion"
|
|
}
|
|
|
|
qtcoredebug {
|
|
dimension "coreversion"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
signingConfig signingConfigs.development
|
|
}
|
|
release {
|
|
signingConfig signingConfigs.publishing
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
def replaceNoTranslate(line) {
|
|
if (line.contains("\"app_name\"") && System.getenv("TARGET_APP_NAME")) {
|
|
return line.replaceAll(">[^<]*<", ">" + System.getenv("TARGET_APP_NAME") + "<")
|
|
}
|
|
if (line.contains("\"app_name_free\"") && System.getenv("TARGET_APP_NAME")) {
|
|
return line.replaceAll(">[^<]*<", ">" + System.getenv("TARGET_APP_NAME") + "<")
|
|
}
|
|
if (line.contains("\"app_edition\"") && System.getenv("APP_EDITION")) {
|
|
return line.replaceAll(">[^<]*<", ">" + System.getenv("APP_EDITION") + "<")
|
|
}
|
|
if (line.contains("\"versionFeatures\"") && System.getenv("APP_FEATURES")) {
|
|
return line.replaceAll(">[^<]*<", ">" + System.getenv("APP_FEATURES") + "<")
|
|
}
|
|
return line;
|
|
}
|
|
|
|
task updateNoTranslate(type: Copy) {
|
|
from('.') {
|
|
include 'no_translate.xml'
|
|
filter {
|
|
line -> replaceNoTranslate(line);
|
|
}
|
|
}
|
|
into 'res/values/'
|
|
}
|
|
|
|
task validateTranslate {
|
|
println "Validating translations"
|
|
|
|
file("res").eachFileRecurse groovy.io.FileType.FILES, {
|
|
if (it.name == "strings.xml" || it.name == "phrases.xml") {
|
|
it.eachLine { line ->
|
|
if (line.contains("\$ s") || line.contains("\$ d") || line.contains("\$ f") ||
|
|
line.contains(" \$s") || line.contains(" \$d") || line.contains(" \$f") ||
|
|
line.contains("1\$ ") || line.contains("2\$ ") || line.contains("3\$ ") ||
|
|
(line.contains("% \$") || line.contains("% 1") ||
|
|
line.contains("% 2") || line.contains("% 3"))) {
|
|
throw new GradleException("Incorrect translation " + it.getAbsolutePath() + " " + line);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
task downloadWorldMiniBasemap {
|
|
doLast {
|
|
ant.get(src: 'http://builder.osmand.net/basemap/World_basemap_mini_2.obf', dest: 'assets/World_basemap_mini.obf', skipexisting: 'true')
|
|
}
|
|
}
|
|
|
|
task collectVoiceAssets(type: Sync) {
|
|
from "../../resources/voice"
|
|
into "assets/voice"
|
|
include "**/*.js"
|
|
}
|
|
|
|
task cleanNoTranslate(type: Delete) {
|
|
delete('res/values/no_translate.xml')
|
|
}
|
|
|
|
|
|
task collectFonts(type: Copy) {
|
|
from "../../resources/fonts"
|
|
from "../../resources/rendering_styles/fonts"
|
|
// from "../../resources/rendering_styles/fonts/OpenSans"
|
|
into "assets/fonts"
|
|
include "*.ttf"
|
|
}
|
|
|
|
task collectHelpContentsStyle(type: Copy) {
|
|
from("../../help/website/help/") {
|
|
include "style.css"
|
|
}
|
|
into "assets"
|
|
}
|
|
|
|
|
|
task collectHelpContentsAssets(type: Copy) {
|
|
from("../../help/website/help") {
|
|
include "about.html"
|
|
include "changes.html"
|
|
include "faq.html"
|
|
include "technical-articles.html"
|
|
include "map-legend.html"
|
|
}
|
|
from("../../help/website/feature_articles") {
|
|
include "*.html"
|
|
}
|
|
|
|
into "assets/feature_articles"
|
|
}
|
|
|
|
|
|
|
|
task copyStyleIcons(type: Copy) {
|
|
from "../../resources/rendering_styles/style-icons/"
|
|
into "res/"
|
|
include "**/*.png"
|
|
}
|
|
|
|
task copyWidgetIcons(type: Exec) {
|
|
if (!Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
commandLine 'sh', file("./copy_widget_icons.sh").getAbsolutePath()
|
|
}
|
|
}
|
|
|
|
task collectExternalResources {
|
|
dependsOn collectVoiceAssets,
|
|
collectFonts,
|
|
collectHelpContentsAssets,
|
|
collectHelpContentsStyle,
|
|
copyStyleIcons,
|
|
updateNoTranslate,
|
|
validateTranslate,
|
|
copyWidgetIcons,
|
|
downloadWorldMiniBasemap
|
|
}
|
|
|
|
// Legacy core build
|
|
import org.apache.tools.ant.taskdefs.condition.Os
|
|
|
|
task buildOsmAndCore(type: Exec) {
|
|
Gradle gradle = getGradle()
|
|
String tskReqStr = gradle.getStartParameter().getTaskRequests().toString().toLowerCase()
|
|
String flavour = "";
|
|
if(!tskReqStr.contains("fat")) {
|
|
if(tskReqStr.contains("arm64")) {
|
|
flavour = flavour.length() == 0 ? "ARM64_ONLY" : ""
|
|
}
|
|
if(tskReqStr.contains("armv7")) {
|
|
flavour = flavour.length() == 0 ? "ARMV7_ONLY" : ""
|
|
}
|
|
if(tskReqStr.contains("x86")) {
|
|
flavour = flavour.length() == 0 ? "X86_ONLY" : ""
|
|
}
|
|
}
|
|
|
|
description "Build Legacy OsmAndCore"
|
|
|
|
if (!Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
if(flavour.length() > 0) {
|
|
environment "$flavour", "1"
|
|
}
|
|
commandLine "bash", file("./old-ndk-build.sh").getAbsolutePath()
|
|
} else {
|
|
commandLine "cmd", "/c", "echo", "Not supported"
|
|
}
|
|
}
|
|
|
|
task cleanupDuplicatesInCore() {
|
|
dependsOn buildOsmAndCore
|
|
// doesn't work for legacy debug builds
|
|
doLast {
|
|
file("libc++/armeabi-v7a").mkdirs()
|
|
file("libs/armeabi-v7a/libc++_shared.so").renameTo(file("libc++/armeabi-v7a/libc++_shared.so"))
|
|
file("libc++/arm64-v8a").mkdirs()
|
|
file("libs/arm64-v8a/libc++_shared.so").renameTo(file("libc++/arm64-v8a/libc++_shared.so"))
|
|
file("libc++/x86").mkdirs()
|
|
file("libs/x86/libc++_shared.so").renameTo(file("libc++/x86/libc++_shared.so"))
|
|
}
|
|
}
|
|
afterEvaluate {
|
|
android.applicationVariants.all { variant ->
|
|
variant.javaCompiler.dependsOn(collectExternalResources, buildOsmAndCore, cleanupDuplicatesInCore)
|
|
}
|
|
}
|
|
|
|
task appStart(type: Exec) {
|
|
// linux
|
|
commandLine 'adb', 'shell', 'am', 'start', '-n', 'net.osmand.plus/net.osmand.plus.activities.MapActivity'
|
|
// windows
|
|
// commandLine 'cmd', '/c', 'adb', 'shell', 'am', 'start', '-n', 'net.osmand.plus/net.osmand.plus.activities.MapActivity'
|
|
}
|
|
|
|
|
|
project.logger.warn("Analytics enabled for free version: $analytics")
|
|
dependencies {
|
|
implementation project(path: ':OsmAnd-java', configuration: 'android')
|
|
if (analytics) {
|
|
// Analytics is totally removed to stay free from 3rd party collecting users data
|
|
// implementation 'com.google.firebase:firebase-core:12.0.1'
|
|
// implementation 'com.google.firebase:firebase-messaging:12.0.1'
|
|
// implementation 'com.google.firebase:firebase-iid:12.0.1'
|
|
// implementation 'com.google.firebase:firebase-config:12.0.1'
|
|
// implementation 'com.facebook.android:facebook-android-sdk:4.31.0'
|
|
}
|
|
implementation 'com.android.support:multidex:1.0.1'
|
|
implementation 'com.android.support:gridlayout-v7:27.1.1'
|
|
implementation 'com.android.support:cardview-v7:27.1.1'
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
implementation 'com.android.support:design:27.1.1'
|
|
implementation 'com.android.support:customtabs:27.1.1'
|
|
implementation fileTree(include: ['gnu-trove-osmand.jar', 'icu4j-49_1_patched.jar'], dir: 'libs')
|
|
|
|
implementation group: 'commons-logging', name: 'commons-logging', version: '1.2'
|
|
implementation 'commons-codec:commons-codec:1.11'
|
|
implementation 'it.unibo.alice.tuprolog:tuprolog:3.2.1'
|
|
implementation 'org.beanshell:bsh-core:2.0b4'
|
|
implementation 'org.apache.commons:commons-compress:1.17'
|
|
implementation 'com.moparisthebest:junidecode:0.1.1'
|
|
implementation 'org.immutables:gson:2.5.0'
|
|
implementation 'com.vividsolutions:jts-core:1.14.0'
|
|
// turn off for now
|
|
//implementation 'com.atilika.kuromoji:kuromoji-ipadic:0.9.0'
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
|
// JS core
|
|
implementation group: 'org.mozilla', name: 'rhino', version: '1.7.9'
|
|
|
|
// size restrictions
|
|
// implementation 'com.ibm.icu:icu4j:50.1'
|
|
// implementation 'net.sf.trove4j:trove4j:3.0.3'
|
|
|
|
qtcoreImplementation fileTree(include: ['QtAndroid.jar', 'QtAndroidBearer.jar'], dir: 'libs')
|
|
qtcoredebugImplementation fileTree(include: ['QtAndroid.jar', 'QtAndroidBearer.jar'], dir: 'libs')
|
|
|
|
legacyImplementation "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@jar"
|
|
qtcoredebugImplementation "net.osmand:OsmAndCore_androidNativeDebug:0.1-SNAPSHOT@aar"
|
|
qtcoredebugImplementation "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar"
|
|
qtcoreImplementation "net.osmand:OsmAndCore_androidNativeRelease:0.1-SNAPSHOT@aar"
|
|
qtcoreImplementation "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar"
|
|
implementation ("com.getkeepsafe.taptargetview:taptargetview:1.12.0"){
|
|
exclude group: 'com.android.support'
|
|
}
|
|
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.1'
|
|
implementation ("com.github.HITGIF:TextFieldBoxes:1.3.5"){
|
|
exclude group: 'com.android.support'
|
|
}
|
|
}
|
|
if(analytics) {
|
|
println "Apply GMS plugin"
|
|
apply plugin: 'com.google.gms.google-services'
|
|
}
|