forked from organicmaps/organicmaps-tmp
[android] Fixed flavors to support different review urls
This commit is contained in:
parent
55aeac9f47
commit
7daa5217c9
2 changed files with 95 additions and 48 deletions
|
@ -6,11 +6,11 @@ To clean everything, use './gradlew clean'
|
|||
|
||||
To build all production apks, use './gradlew assembleRelease' or './gradlew aR'
|
||||
|
||||
To build production Pro version, use './gradlew assembleProRelease'
|
||||
To build production Pro version, use './gradlew assembleGoogleProRelease'
|
||||
|
||||
To build beta, use './gradlew assembleProBeta'
|
||||
|
||||
To build specific Lite version, use './gradlew assembleGoogleRelease'
|
||||
To build specific Lite version, use './gradlew assembleAmazonLiteRelease'
|
||||
|
||||
To see all available build targets './gradlew tasks'
|
||||
|
||||
|
|
|
@ -44,67 +44,114 @@ android {
|
|||
assets.srcDirs = ['assets']
|
||||
}
|
||||
|
||||
flavorDimensions 'store'
|
||||
productFlavors {
|
||||
pro {
|
||||
|
||||
googlePro {
|
||||
applicationId 'com.mapswithme.maps.pro'
|
||||
buildConfigField 'String', 'PRO_URL', '""' // Empty url string for the pro version
|
||||
android.sourceSets.pro.setRoot('flavors/pro')
|
||||
android.sourceSets.pro.assets.srcDirs = ['flavors/guides-assets']
|
||||
buildConfigField 'boolean', 'IS_PRO', 'true'
|
||||
buildConfigField 'String', 'PRO_URL', '"market://details?id=com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"market://details?id=com.mapswithme.maps.pro"'
|
||||
android.sourceSets.googlePro.setRoot('flavors/pro')
|
||||
android.sourceSets.googlePro.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
|
||||
// Pro version for Amazon doesn't include links to our travel guides
|
||||
proNoGuides {
|
||||
googleLite {
|
||||
applicationId 'com.mapswithme.maps'
|
||||
buildConfigField 'boolean', 'IS_PRO', 'false'
|
||||
buildConfigField 'String', 'PRO_URL', '"market://details?id=com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"market://details?id=com.mapswithme.maps"'
|
||||
android.sourceSets.googleLite.setRoot('flavors/lite')
|
||||
android.sourceSets.googleLite.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
|
||||
samsungPro {
|
||||
applicationId 'com.mapswithme.maps.pro'
|
||||
buildConfigField 'String', 'PRO_URL', '""' // Empty url string for the pro version
|
||||
android.sourceSets.proNoGuides.setRoot('flavors/pro')
|
||||
buildConfigField 'boolean', 'IS_PRO', 'true'
|
||||
buildConfigField 'String', 'PRO_URL', '"samsungapps://ProductDetail/com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"samsungapps://ProductDetail/com.mapswithme.maps.pro"'
|
||||
android.sourceSets.samsungPro.setRoot('flavors/pro')
|
||||
android.sourceSets.samsungPro.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
|
||||
google {
|
||||
flavorDimension 'store'
|
||||
buildConfigField 'String', 'PRO_URL', '"market://details?id=com.mapswithme.maps.pro"'
|
||||
android.sourceSets.google.setRoot('flavors/lite')
|
||||
android.sourceSets.google.assets.srcDirs = ['flavors/guides-assets']
|
||||
samsungLite {
|
||||
applicationId 'com.mapswithme.maps.samsung' // historically different id for samsung lite version
|
||||
buildConfigField 'boolean', 'IS_PRO', 'false'
|
||||
buildConfigField 'String', 'PRO_URL', '"samsungapps://ProductDetail/com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"samsungapps://ProductDetail/com.mapswithme.maps.samsung"'
|
||||
android.sourceSets.samsungLite.setRoot('flavors/lite')
|
||||
android.sourceSets.samsungLite.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
|
||||
// Linked to the Pro version on Samsung Apps
|
||||
samsung {
|
||||
flavorDimension 'store'
|
||||
applicationId 'com.mapswithme.maps.samsung' // Custom package name for Samsung Lite version - due to historical reasons
|
||||
buildConfigField 'String', 'PRO_URL', '"samsungapps://ProductDetail/com.mapswithme.maps.pro"'
|
||||
android.sourceSets.samsung.setRoot('flavors/lite')
|
||||
android.sourceSets.samsung.assets.srcDirs = ['flavors/guides-assets']
|
||||
amazonPro {
|
||||
applicationId 'com.mapswithme.maps.pro'
|
||||
buildConfigField 'boolean', 'IS_PRO', 'true'
|
||||
buildConfigField 'String', 'PRO_URL', '"amzn://apps/android?p=com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"amzn://apps/android?p=com.mapswithme.maps.pro"'
|
||||
android.sourceSets.amazonPro.setRoot('flavors/pro')
|
||||
// Do not include guides assets for Amazon, they don't like GP apps ads
|
||||
}
|
||||
|
||||
// Linked to the Pro version on Amazon Apps
|
||||
// Lite version for Amazon doesn't include links to our travel guides
|
||||
amazon {
|
||||
flavorDimension 'store'
|
||||
buildConfigField 'String', 'PRO_URL', '"amzn://apps/android?p=com.mapswithme.maps.pro"'
|
||||
android.sourceSets.amazon.setRoot('flavors/lite')
|
||||
amazonLite {
|
||||
applicationId 'com.mapswithme.maps'
|
||||
buildConfigField 'boolean', 'IS_PRO', 'false'
|
||||
buildConfigField 'String', 'PRO_URL', '"amzn://apps/android?p=com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"amzn://apps/android?p=com.mapswithme.maps"'
|
||||
android.sourceSets.amazonLite.setRoot('flavors/lite')
|
||||
// Do not include guides assets for Amazon, they don't like GP apps ads
|
||||
}
|
||||
|
||||
// Linked to the Pro version on AndroidPit store
|
||||
androidpit {
|
||||
flavorDimension 'store'
|
||||
buildConfigField 'String', 'PRO_URL', '"appcenter://package/com.mapswithme.maps.pro"'
|
||||
android.sourceSets.androidpit.setRoot('flavors/lite')
|
||||
android.sourceSets.androidpit.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
// Linked to the Pro version on SlideMe store
|
||||
slideme {
|
||||
flavorDimension 'store'
|
||||
buildConfigField 'String', 'PRO_URL', '"sam://details?bundleId=5eed1b74-8c8b-11e2-8af8-1670ef61174f"'
|
||||
android.sourceSets.slideme.setRoot('flavors/lite')
|
||||
android.sourceSets.slideme.assets.srcDirs = ['flavors/guides-assets']
|
||||
androidpitPro {
|
||||
applicationId 'com.mapswithme.maps.pro'
|
||||
buildConfigField 'boolean', 'IS_PRO', 'true'
|
||||
buildConfigField 'String', 'PRO_URL', '"appcenter://package/com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"appcenter://package/com.mapswithme.maps.pro"'
|
||||
android.sourceSets.androidpitPro.setRoot('flavors/pro')
|
||||
android.sourceSets.androidpitPro.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
|
||||
// Linked to the Pro version on Yandex store
|
||||
yandex {
|
||||
flavorDimension 'store'
|
||||
buildConfigField 'String', 'PRO_URL', '"yastore://details?id=com.mapswithme.maps.pro"'
|
||||
android.sourceSets.yandex.setRoot('flavors/lite')
|
||||
android.sourceSets.yandex.assets.srcDirs = ['flavors/guides-assets']
|
||||
androidpitLite {
|
||||
applicationId 'com.mapswithme.maps'
|
||||
buildConfigField 'boolean', 'IS_PRO', 'false'
|
||||
buildConfigField 'String', 'PRO_URL', '"appcenter://package/com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"appcenter://package/com.mapswithme.maps"'
|
||||
android.sourceSets.androidpitLite.setRoot('flavors/lite')
|
||||
android.sourceSets.androidpitLite.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
|
||||
slidemePro {
|
||||
applicationId 'com.mapswithme.maps.pro'
|
||||
buildConfigField 'boolean', 'IS_PRO', 'true'
|
||||
buildConfigField 'String', 'PRO_URL', '"sam://details?bundleId=5eed1b74-8c8b-11e2-8af8-1670ef61174f"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"sam://details?bundleId=5eed1b74-8c8b-11e2-8af8-1670ef61174f"'
|
||||
android.sourceSets.slidemePro.setRoot('flavors/pro')
|
||||
android.sourceSets.slidemePro.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
|
||||
slidemeLite {
|
||||
applicationId 'com.mapswithme.maps'
|
||||
buildConfigField 'boolean', 'IS_PRO', 'false'
|
||||
buildConfigField 'String', 'PRO_URL', '"sam://details?bundleId=5eed1b74-8c8b-11e2-8af8-1670ef61174f"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"sam://details?bundleId=943fe9dc-9799-11e2-8af8-1670ef61174f"'
|
||||
android.sourceSets.slidemeLite.setRoot('flavors/lite')
|
||||
android.sourceSets.slidemeLite.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
|
||||
yandexPro {
|
||||
applicationId 'com.mapswithme.maps.pro'
|
||||
buildConfigField 'boolean', 'IS_PRO', 'true'
|
||||
buildConfigField 'String', 'PRO_URL', '"yastore://details?id=com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"yastore://details?id=com.mapswithme.maps.pro"'
|
||||
android.sourceSets.yandexPro.setRoot('flavors/pro')
|
||||
android.sourceSets.yandexPro.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
|
||||
yandexLite {
|
||||
applicationId 'com.mapswithme.maps'
|
||||
buildConfigField 'boolean', 'IS_PRO', 'false'
|
||||
buildConfigField 'String', 'PRO_URL', '"yastore://details?id=com.mapswithme.maps.pro"'
|
||||
buildConfigField 'String', 'REVIEW_URL', '"yastore://details?id=com.mapswithme.maps"'
|
||||
android.sourceSets.yandexLite.setRoot('flavors/lite')
|
||||
android.sourceSets.yandexLite.assets.srcDirs = ['flavors/guides-assets']
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue