Skip to content

Commit 1c25b03

Browse files
committed
Try to fix up naming: com.zulip.flutter, Zulip, Kandra
Pretty sure there are more bits to fix, but we'll deal with those as they come up.
1 parent 8679d7f commit 1c25b03

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ android {
4444

4545
defaultConfig {
4646
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
47-
applicationId "com.zulip.zulip"
47+
applicationId "com.zulip.flutter"
4848
// You can update the following values to match your application needs.
4949
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
5050
minSdkVersion flutter.minSdkVersion

android/app/src/debug/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-
package="com.zulip.zulip">
2+
package="com.zulip.flutter">
33
<!-- The INTERNET permission is required for development. Specifically,
44
the Flutter tool needs it to communicate with the running application
55
to allow setting breakpoints, to provide hot reload, etc.

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-
package="com.zulip.zulip">
2+
package="com.zulip.flutter">
33
<application
44
android:label="zulip"
55
android:name="${applicationName}"

android/app/src/main/kotlin/com/zulip/zulip/MainActivity.kt renamed to android/app/src/main/kotlin/com/zulip/flutter/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.zulip.zulip
1+
package com.zulip.flutter
22

33
import io.flutter.embedding.android.FlutterActivity
44

android/app/src/profile/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-
package="com.zulip.zulip">
2+
package="com.zulip.flutter">
33
<!-- The INTERNET permission is required for development. Specifically,
44
the Flutter tool needs it to communicate with the running application
55
to allow setting breakpoints, to provide hot reload, etc.

ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
"$(inherited)",
297297
"@executable_path/Frameworks",
298298
);
299-
PRODUCT_BUNDLE_IDENTIFIER = com.zulip.zulip;
299+
PRODUCT_BUNDLE_IDENTIFIER = com.zulip.flutter;
300300
PRODUCT_NAME = "$(TARGET_NAME)";
301301
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
302302
SWIFT_VERSION = 5.0;
@@ -424,7 +424,7 @@
424424
"$(inherited)",
425425
"@executable_path/Frameworks",
426426
);
427-
PRODUCT_BUNDLE_IDENTIFIER = com.zulip.zulip;
427+
PRODUCT_BUNDLE_IDENTIFIER = com.zulip.flutter;
428428
PRODUCT_NAME = "$(TARGET_NAME)";
429429
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
430430
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -446,7 +446,7 @@
446446
"$(inherited)",
447447
"@executable_path/Frameworks",
448448
);
449-
PRODUCT_BUNDLE_IDENTIFIER = com.zulip.zulip;
449+
PRODUCT_BUNDLE_IDENTIFIER = com.zulip.flutter;
450450
PRODUCT_NAME = "$(TARGET_NAME)";
451451
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
452452
SWIFT_VERSION = 5.0;

linux/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ project(runner LANGUAGES CXX)
77
set(BINARY_NAME "zulip")
88
# The unique GTK application identifier for this application. See:
99
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
10-
set(APPLICATION_ID "com.zulip.zulip")
10+
set(APPLICATION_ID "com.zulip.flutter")
1111

1212
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
1313
# versions of CMake.

macos/Runner/Configs/AppInfo.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
PRODUCT_NAME = zulip
99

1010
// The application's bundle identifier
11-
PRODUCT_BUNDLE_IDENTIFIER = com.zulip.zulip
11+
PRODUCT_BUNDLE_IDENTIFIER = com.zulip.flutter
1212

1313
// The copyright displayed in application information
14-
PRODUCT_COPYRIGHT = Copyright © 2022 com.zulip. All rights reserved.
14+
PRODUCT_COPYRIGHT = Copyright © 2022 Kandra Labs, Inc. All rights reserved.

windows/runner/Runner.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ BEGIN
8989
BEGIN
9090
BLOCK "040904e4"
9191
BEGIN
92-
VALUE "CompanyName", "com.zulip" "\0"
92+
VALUE "CompanyName", "Kandra Labs, Inc." "\0"
9393
VALUE "FileDescription", "zulip" "\0"
9494
VALUE "FileVersion", VERSION_AS_STRING "\0"
9595
VALUE "InternalName", "zulip" "\0"
96-
VALUE "LegalCopyright", "Copyright (C) 2022 com.zulip. All rights reserved." "\0"
96+
VALUE "LegalCopyright", "Copyright (C) 2022 Kandra Labs, Inc. All rights reserved." "\0"
9797
VALUE "OriginalFilename", "zulip.exe" "\0"
9898
VALUE "ProductName", "zulip" "\0"
9999
VALUE "ProductVersion", VERSION_AS_STRING "\0"

0 commit comments

Comments
 (0)