Skip to content

Commit d0431fb

Browse files
committed
Revert application label change
1 parent b0ce6a1 commit d0431fb

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

flavors/android/app/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ android {
3535
create("internal") {
3636
dimension = "track"
3737
applicationIdSuffix = ".internal"
38+
manifestPlaceholders["applicationLabel"] = "[Internal] Shorebird Example"
3839
}
3940
create("stable") {
4041
dimension = "track"
42+
manifestPlaceholders["applicationLabel"] = "Shorebird Example"
4143
}
4244
}
4345

flavors/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2-
<application android:label="flavors" android:name="${applicationName}" android:icon="@mipmap/ic_launcher">
2+
<application android:label="${applicationLabel}" android:name="${applicationName}" android:icon="@mipmap/ic_launcher">
33
<activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
44
<!-- Specifies an Android theme to apply to this Activity as soon as
55
the Android process has started. This theme is visible to the user

0 commit comments

Comments
 (0)