Skip to content

Commit

Permalink
Updating launcher icons specific to debug build and appending debug t…
Browse files Browse the repository at this point in the history
…o application id as well
  • Loading branch information
nkuppan committed Nov 21, 2023
1 parent 53fa3c4 commit fb746e0
Show file tree
Hide file tree
Showing 42 changed files with 39 additions and 4 deletions.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ android {
buildTypes {
debug {
isMinifyEnabled = false
applicationIdSuffix = ".debug"
}
create("macrobenchmark") {
signingConfig = signingConfigs.getByName("debug")
Expand Down
19 changes: 19 additions & 0 deletions app/google-services.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,25 @@
"other_platform_oauth_client": []
}
}
},
{
"client_info": {
"mobilesdk_app_id": "1:440806922710:android:a30cb963b5286fce6dec77",
"android_client_info": {
"package_name": "com.naveenapps.expensemanager.debug"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyBQwjhw3F-yRAtEfQdZrnLcPvRx4IQaY4c"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/res/values/color.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
<color name="white">@android:color/white</color>
<color name="red_500">#F44336</color>

<color name="ic_launcher_background">#FFFFFF</color>

<color name="green_500">#43A546</color>
<color name="light_green_500">#CDDC39</color>
<color name="orange_500">#FF9800</color>
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</style>

<style name="ExpenseManager.Theme.Splash.Final" parent="ExpenseManager.Theme.Splash">
<item name="windowSplashScreenBackground">@color/ic_launcher_background</item>
<item name="postSplashScreenTheme">@style/ExpenseManager.Theme</item>
</style>

Expand Down
Binary file added core/common/src/debug/ic_launcher-playstore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added core/common/src/debug/res/mipmap-mdpi/ic_launcher.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions core/common/src/debug/res/values/color.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#DC3D3D</color>
</resources>
2 changes: 0 additions & 2 deletions core/common/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
<color name="white">@android:color/white</color>
<color name="red_500">#F44336</color>

<color name="ic_launcher_background">#FFFFFF</color>

<color name="green_500">#43A546</color>
<color name="light_green_500">#CDDC39</color>
<color name="orange_500">#FF9800</color>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
</adaptive-icon>
4 changes: 4 additions & 0 deletions core/common/src/release/res/values/color.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
</resources>

0 comments on commit fb746e0

Please sign in to comment.