chore(config): 플랫폼 빌드 설정 및 의존성 업데이트

- Android: 패키지명 변경 (askiineverdie → asciineverdie)
- iOS/macOS: 프로젝트 설정 업데이트
- Linux/Windows: CMake 설정 업데이트
- Web: manifest 및 index.html 업데이트
- pubspec.yaml 의존성 업데이트
This commit is contained in:
JiWoong Sul
2025-12-31 17:46:45 +09:00
parent 0a2ecfc5b5
commit 9bfced2824
16 changed files with 43 additions and 43 deletions

View File

@@ -6,7 +6,7 @@ plugins {
}
android {
namespace = "com.example.askiineverdie"
namespace = "com.example.asciineverdie"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
@@ -21,7 +21,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.askiineverdie"
applicationId = "com.example.asciineverdie"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion

View File

@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="askiineverdie"
android:label="asciineverdie"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<!-- Copyright Protection -->

View File

@@ -1,4 +1,4 @@
package com.example.askiineverdie
package com.example.asciineverdie
import io.flutter.embedding.android.FlutterActivity

View File

@@ -368,7 +368,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie;
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
@@ -384,7 +384,7 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -401,7 +401,7 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
@@ -416,7 +416,7 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
@@ -547,7 +547,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie;
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -569,7 +569,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie;
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;

View File

@@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Askiineverdie</string>
<string>Asciineverdie</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
@@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>askiineverdie</string>
<string>asciineverdie</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>

View File

@@ -4,10 +4,10 @@ project(runner LANGUAGES CXX)
# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "askiineverdie")
set(BINARY_NAME "asciineverdie")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.example.askiineverdie")
set(APPLICATION_ID "com.example.asciineverdie")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.

View File

@@ -46,11 +46,11 @@ static void my_application_activate(GApplication* application) {
if (use_header_bar) {
GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
gtk_widget_show(GTK_WIDGET(header_bar));
gtk_header_bar_set_title(header_bar, "askiineverdie");
gtk_header_bar_set_title(header_bar, "asciineverdie");
gtk_header_bar_set_show_close_button(header_bar, TRUE);
gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
} else {
gtk_window_set_title(window, "askiineverdie");
gtk_window_set_title(window, "asciineverdie");
}
gtk_window_set_default_size(window, 1280, 720);

View File

@@ -66,7 +66,7 @@
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
33CC10ED2044A3C60003C045 /* askiineverdie.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = askiineverdie.app; sourceTree = BUILT_PRODUCTS_DIR; };
33CC10ED2044A3C60003C045 /* asciineverdie.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = asciineverdie.app; sourceTree = BUILT_PRODUCTS_DIR; };
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
@@ -144,7 +144,7 @@
33CC10EE2044A3C60003C045 /* Products */ = {
isa = PBXGroup;
children = (
33CC10ED2044A3C60003C045 /* askiineverdie.app */,
33CC10ED2044A3C60003C045 /* asciineverdie.app */,
331C80D5294CF71000263BE5 /* RunnerTests.xctest */,
);
name = Products;
@@ -249,7 +249,7 @@
);
name = Runner;
productName = Runner;
productReference = 33CC10ED2044A3C60003C045 /* askiineverdie.app */;
productReference = 33CC10ED2044A3C60003C045 /* asciineverdie.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
@@ -479,10 +479,10 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/askiineverdie.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/askiineverdie";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/asciineverdie.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/asciineverdie";
};
name = Debug;
};
@@ -494,10 +494,10 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/askiineverdie.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/askiineverdie";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/asciineverdie.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/asciineverdie";
};
name = Release;
};
@@ -509,10 +509,10 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/askiineverdie.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/askiineverdie";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/asciineverdie.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/asciineverdie";
};
name = Profile;
};

View File

@@ -15,7 +15,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "askiineverdie.app"
BuildableName = "asciineverdie.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@@ -31,7 +31,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "askiineverdie.app"
BuildableName = "asciineverdie.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@@ -66,7 +66,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "askiineverdie.app"
BuildableName = "asciineverdie.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@@ -83,7 +83,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "askiineverdie.app"
BuildableName = "asciineverdie.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>

View File

@@ -5,10 +5,10 @@
// 'flutter create' template.
// The application's name. By default this is also the title of the Flutter window.
PRODUCT_NAME = askiineverdie
PRODUCT_NAME = asciineverdie
// The application's bundle identifier
PRODUCT_BUNDLE_IDENTIFIER = com.example.askiineverdie
PRODUCT_BUNDLE_IDENTIFIER = com.example.asciineverdie
// The copyright displayed in application information
PRODUCT_COPYRIGHT = Copyright © 2025 com.example. All rights reserved.

View File

@@ -1,4 +1,4 @@
name: askiineverdie
name: asciineverdie
description: "Offline Progress Quest rebuild in Flutter."
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.

View File

@@ -23,13 +23,13 @@
<!-- iOS meta tags & icons -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="askiineverdie">
<meta name="apple-mobile-web-app-title" content="asciineverdie">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
<title>askiineverdie</title>
<title>asciineverdie</title>
<link rel="manifest" href="manifest.json">
</head>
<body>

View File

@@ -1,6 +1,6 @@
{
"name": "askiineverdie",
"short_name": "askiineverdie",
"name": "asciineverdie",
"short_name": "asciineverdie",
"start_url": ".",
"display": "standalone",
"background_color": "#0175C2",

View File

@@ -1,10 +1,10 @@
# Project-level configuration.
cmake_minimum_required(VERSION 3.14)
project(askiineverdie LANGUAGES CXX)
project(asciineverdie LANGUAGES CXX)
# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "askiineverdie")
set(BINARY_NAME "asciineverdie")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.

View File

@@ -90,12 +90,12 @@ BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "com.example" "\0"
VALUE "FileDescription", "askiineverdie" "\0"
VALUE "FileDescription", "asciineverdie" "\0"
VALUE "FileVersion", VERSION_AS_STRING "\0"
VALUE "InternalName", "askiineverdie" "\0"
VALUE "InternalName", "asciineverdie" "\0"
VALUE "LegalCopyright", "Copyright (C) 2025 com.example. All rights reserved." "\0"
VALUE "OriginalFilename", "askiineverdie.exe" "\0"
VALUE "ProductName", "askiineverdie" "\0"
VALUE "OriginalFilename", "asciineverdie.exe" "\0"
VALUE "ProductName", "asciineverdie" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "\0"
END
END

View File

@@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
FlutterWindow window(project);
Win32Window::Point origin(10, 10);
Win32Window::Size size(1280, 720);
if (!window.Create(L"askiineverdie", origin, size)) {
if (!window.Create(L"asciineverdie", origin, size)) {
return EXIT_FAILURE;
}
window.SetQuitOnClose(true);