Adds experimental and play app icons and names.
|
@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
<resources>
|
||||
<string name="app_name">Rocket.Chat - Development</string>
|
||||
<string name="share_extension_name">Rocket.Chat - Development</string>
|
||||
</resources>
|
|
@ -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"
|
||||
|
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
|
@ -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>
|
||||
|
|
Before Width: | Height: | Size: 1.8 KiB |
|
@ -1,4 +0,0 @@
|
|||
<resources>
|
||||
<string name="app_name">Rocket.Chat Experimental</string>
|
||||
<string name="share_extension_name">Rocket.Chat Experimental</string>
|
||||
</resources>
|