Skip to content

Commit 8937f89

Browse files
committed
fix: Update application name to "Borneo Aqua CE" across Android, iOS, and Windows configurations
1 parent c16b681 commit 8937f89

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

client/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="Borneo-IoT CE" android:name="${applicationName}" android:icon="@mipmap/ic_launcher">
2+
<application android:label="Borneo Aqua CE" android:name="${applicationName}" android:icon="@mipmap/ic_launcher">
33
<activity android:name="com.yalantis.ucrop.UCropActivity" android:theme="@style/Theme.MaterialComponents.DayNight.NoActionBar"/>
44
<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">
55
<!-- Specifies an Android theme to apply to this Activity as soon as

client/ios/Runner/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<key>CFBundleDevelopmentRegion</key>
66
<string>$(DEVELOPMENT_LANGUAGE)</string>
77
<key>CFBundleDisplayName</key>
8-
<string>Borneo-IoT CE</string>
8+
<string>Borneo Aqua CE</string>
99
<key>CFBundleExecutable</key>
1010
<string>$(EXECUTABLE_NAME)</string>
1111
<key>CFBundleIdentifier</key>

client/lib/app/app.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class _BorneoAppState extends State<BorneoApp> {
121121
child: Builder(
122122
builder: (context) {
123123
return MaterialApp(
124-
title: 'Borneo-IoT',
124+
title: 'Borneo Aqua',
125125
theme: BorneoTheme(Theme.of(context).textTheme).light(),
126126
darkTheme: BorneoTheme(Theme.of(context).textTheme).dark(),
127127
themeMode: _themeMode,

client/windows/runner/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
2727
FlutterWindow window(project);
2828
Win32Window::Point origin(10, 10);
2929
Win32Window::Size size(1280, 720);
30-
if (!window.Create(L"Borneo-IoT", origin, size)) {
30+
if (!window.Create(L"Borneo Aqua", origin, size)) {
3131
return EXIT_FAILURE;
3232
}
3333
window.SetQuitOnClose(true);

0 commit comments

Comments
 (0)