1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-09-09 08:00:39 +02:00

added support for round launcher icons and update version to 2.3.0

This commit is contained in:
oliexdev
2020-06-16 11:21:55 +02:00
parent e5bc7dc9cb
commit b72d1bd2ac
11 changed files with 254 additions and 138 deletions

View File

@@ -8,12 +8,13 @@ android {
testApplicationId "com.health.openscale.test"
minSdkVersion 21
targetSdkVersion 29
versionCode 48
versionName "2.2.0"
versionCode 49
versionName "2.3.0"
archivesBaseName = "openScale-$versionName"
manifestPlaceholders = [
appIcon: "@drawable/ic_launcher_openscale"
appIcon: "@drawable/ic_launcher_openscale",
appIconRound: "@mipmap/ic_launcher_openscale_round"
]
javaCompileOptions {
@@ -94,7 +95,8 @@ android {
}
light {
manifestPlaceholders = [
appIcon: "@drawable/ic_launcher_openscale_light"
appIcon: "@drawable/ic_launcher_openscale_light",
appIconRound: "@mipmap/ic_launcher_openscale_light_round"
]
applicationIdSuffix ".light"
versionNameSuffix "-light"
@@ -104,7 +106,8 @@ android {
}
pro {
manifestPlaceholders = [
appIcon: "@drawable/ic_launcher_openscale_pro"
appIcon: "@drawable/ic_launcher_openscale_pro",
appIconRound: "@mipmap/ic_launcher_openscale_pro_round"
]
applicationIdSuffix ".pro"
versionNameSuffix "-pro"