From f8477d8a8c60f4423eb29e07f87eeec193e55714 Mon Sep 17 00:00:00 2001 From: efrilm Date: Tue, 12 Aug 2025 17:17:44 +0700 Subject: [PATCH] refactor: package name and app anem --- android/app/build.gradle.kts | 4 ++-- android/app/src/main/AndroidManifest.xml | 4 +++- .../kotlin/com/example/apskel_owner_flutter/MainActivity.kt | 2 +- ios/Runner/Info.plist | 2 +- linux/CMakeLists.txt | 2 +- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index a733c42..a64dad4 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -6,7 +6,7 @@ plugins { } android { - namespace = "com.example.apskel_owner_flutter" + namespace = "com.apskel.apskel_owner" 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.apskel_owner_flutter" + applicationId = "com.apskel.apskel_owner" // 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 diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 8ccc061..3d9eb2d 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,6 +1,8 @@ + + CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName - Apskel Owner Flutter + Apskel Owner CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt index 80ef900..3779ef0 100644 --- a/linux/CMakeLists.txt +++ b/linux/CMakeLists.txt @@ -7,7 +7,7 @@ project(runner LANGUAGES CXX) set(BINARY_NAME "apskel_owner_flutter") # The unique GTK application identifier for this application. See: # https://wiki.gnome.org/HowDoI/ChooseApplicationID -set(APPLICATION_ID "com.example.apskel_owner_flutter") +set(APPLICATION_ID "com.apskel.apskel_owner") # Explicitly opt in to modern CMake behaviors to avoid warnings with recent # versions of CMake.