From 7d1c3d1bd695e50fd6b0d1c7f7f9e7525e0c67b3 Mon Sep 17 00:00:00 2001 From: efrilm Date: Wed, 6 Aug 2025 23:45:15 +0700 Subject: [PATCH] feat: package name --- android/app/build.gradle | 4 ++-- .../src/main/kotlin/com/example/enaklo_pos/MainActivity.kt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 7ecc902..3eb4ebd 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -23,7 +23,7 @@ if (flutterVersionName == null) { } android { - namespace "com.example.enaklo_pos" + namespace "com.appscale.pos" compileSdkVersion 35 ndkVersion flutter.ndkVersion @@ -42,7 +42,7 @@ android { defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "com.example.enaklo_pos" + applicationId "com.appscale.pos" // You can update the following values to match your application needs. // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. minSdkVersion 21 diff --git a/android/app/src/main/kotlin/com/example/enaklo_pos/MainActivity.kt b/android/app/src/main/kotlin/com/example/enaklo_pos/MainActivity.kt index 771aa26..bb01d23 100644 --- a/android/app/src/main/kotlin/com/example/enaklo_pos/MainActivity.kt +++ b/android/app/src/main/kotlin/com/example/enaklo_pos/MainActivity.kt @@ -1,4 +1,4 @@ -package com.example.enaklo_pos +package com.appscale.pos import io.flutter.embedding.android.FlutterActivity