Skip to content

Commit

Permalink
Merge branch 'main' into setup-crashlytics
Browse files Browse the repository at this point in the history
  • Loading branch information
kitallis committed May 17, 2024
2 parents 6ce9089 + 1be5682 commit 1169a45
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ android {
}

defaultConfig {
applicationId "org.tramline.ueno"
applicationId "com.tramline.ueno"
minSdkVersion 30
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.tramline.ueno">
package="com.tramline.ueno">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.tramline.ueno">
package="com.tramline.ueno">
<application
android:label="ueno"
android:name="${applicationName}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.tramline.ueno
package com.tramline.ueno

import io.flutter.embedding.android.FlutterActivity

Expand Down
2 changes: 1 addition & 1 deletion android/app/src/profile/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.tramline.ueno">
package="com.tramline.ueno">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
Expand Down
6 changes: 3 additions & 3 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,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;
Expand Down Expand Up @@ -559,7 +559,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;
Expand Down Expand Up @@ -597,7 +597,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;
Expand Down
2 changes: 1 addition & 1 deletion ios/fastlane/Appfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 1169a45

Please sign in to comment.