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