Adds experimental and play app icons and names.

This commit is contained in:
Filipe Brito 2019-09-26 18:20:13 -03:00
parent 8d06807d2b
commit 7e715a5cd6
11 changed files with 14 additions and 12 deletions

View File

@ -173,11 +173,19 @@ android {
productFlavors {
play {
dimension "store"
manifestPlaceholders = [
appIcon: "@mipmap/ic_launcher",
appName: "@string/app_name"
]
}
playExperimental {
dimension "store"
applicationId "chat.rocket.reactnative"
manifestPlaceholders = [
appIcon: "@mipmap/ic_launcher_experimental",
appName: "@string/app_name_experimental"
]
}
}

View File

@ -1,4 +0,0 @@
<resources>
<string name="app_name">Rocket.Chat - Development</string>
<string name="share_extension_name">Rocket.Chat - Development</string>
</resources>

View File

@ -1,13 +1,15 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="chat.rocket.android"
android:sharedUserId="chat.rocket.android">
<application
android:name="chat.rocket.android.MainApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
android:icon="${appIcon}"
android:label="${appName}"
android:theme="@style/AppTheme"
tools:replace="android:label">
<activity
android:name="chat.rocket.android.MainActivity"

View File

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -1,5 +1,5 @@
<resources>
<string name="app_name">Rocket.Chat</string>
<string name="app_name_experimental">Rocket.Chat Experimental</string>
<string name="share_extension_name">Rocket.Chat</string>
<string name="no_browser_found">No Browser Found</string>
</resources>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,4 +0,0 @@
<resources>
<string name="app_name">Rocket.Chat Experimental</string>
<string name="share_extension_name">Rocket.Chat Experimental</string>
</resources>