From 1e3a83e2b4a6610bb31485be92a1a612d9d1bc41 Mon Sep 17 00:00:00 2001 From: Nivedita Priyadarshini Date: Fri, 10 May 2024 12:27:01 +0530 Subject: [PATCH 1/2] Go back to the og bundle id --- android/app/build.gradle | 2 +- android/app/src/debug/AndroidManifest.xml | 2 +- android/app/src/main/AndroidManifest.xml | 2 +- .../app/src/main/kotlin/org/tramline/ueno/MainActivity.kt | 2 +- android/app/src/profile/AndroidManifest.xml | 2 +- ios/Runner.xcodeproj/project.pbxproj | 6 +++--- ios/fastlane/Appfile | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 08b510d..bb5a986 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -50,7 +50,7 @@ android { } defaultConfig { - applicationId "org.tramline.ueno" + applicationId "com.tramline.ueno" minSdkVersion 30 targetSdkVersion flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index 7c4b3e2..c101c16 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="com.tramline.ueno"> diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 74b8b97..13c497c 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="com.tramline.ueno"> + package="com.tramline.ueno"> diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 5b0556f..b904076 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -407,7 +407,7 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = org.tramline.ueno; + PRODUCT_BUNDLE_IDENTIFIER = com.tramline.ueno; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = ueno_app_store_distribution; @@ -555,7 +555,7 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = org.tramline.ueno; + PRODUCT_BUNDLE_IDENTIFIER = com.tramline.ueno; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = ueno_app_store_distribution; @@ -593,7 +593,7 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = org.tramline.ueno; + PRODUCT_BUNDLE_IDENTIFIER = com.tramline.ueno; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = ueno_app_store_distribution; diff --git a/ios/fastlane/Appfile b/ios/fastlane/Appfile index bc1d65a..f1ad528 100644 --- a/ios/fastlane/Appfile +++ b/ios/fastlane/Appfile @@ -1,4 +1,4 @@ -app_identifier("org.tramline.ueno") # The bundle identifier of your app +app_identifier("com.tramline.ueno") # The bundle identifier of your app team_id("6XCS8KZXDA") # apple_id("[[APPLE_ID]]") # Your Apple Developer Portal username From 1ff9b921337e5e4ef7f410499a6189158160ed0e Mon Sep 17 00:00:00 2001 From: Nivedita Priyadarshini Date: Fri, 10 May 2024 12:45:21 +0530 Subject: [PATCH 2/2] Allow fastlane to create profile for release --- ios/fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 1533326..f81ba4d 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -58,7 +58,7 @@ platform :ios do sigh( adhoc: (options[:release] ? false : true), api_key: api_key, - readonly: (options[:release] ? true : false) + readonly: false ) end