From 4a43bc9c6cbfd79277c9d7b9f0ecfc8fd73936ec Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Mon, 16 Jun 2025 07:38:16 -0600 Subject: [PATCH] bump build to 31 and version to 0.5.5 --- BUILDING.md | 12 ++++-------- android/app/build.gradle | 4 ++-- ios/App/App.xcodeproj/project.pbxproj | 8 ++++---- package.json | 2 +- 4 files changed, 11 insertions(+), 15 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 6c79573f..4d7ca466 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -334,9 +334,7 @@ Prerequisites: macOS with Xcode installed export GEM_PATH=$shortened_path ``` -1. Check the iOS flag isIOS in CapacitorPlatformService (currently hard-coded for iOS build). - -2. Build the web assets: +1. Build the web assets: ```bash rm -rf dist @@ -344,7 +342,7 @@ Prerequisites: macOS with Xcode installed npm run build:capacitor ``` -3. Update iOS project with latest build: +2. Update iOS project with latest build: ```bash npx cap sync ios @@ -352,7 +350,7 @@ Prerequisites: macOS with Xcode installed - If that fails with "Could not find..." then look at the "gem_path" instructions above. -4. Copy the assets: +3. Copy the assets: ```bash # It makes no sense why capacitor-assets will not run without these but it actually changes the contents. @@ -370,7 +368,7 @@ Prerequisites: macOS with Xcode installed xcrun agvtool new-version 30 # Unfortunately this edits Info.plist directly. #xcrun agvtool new-marketing-version 0.4.5 - cat App.xcodeproj/project.pbxproj | sed "s/MARKETING_VERSION = .*;/MARKETING_VERSION = 0.5.4;/g" > temp && mv temp App.xcodeproj/project.pbxproj + cat App.xcodeproj/project.pbxproj | sed "s/MARKETING_VERSION = .*;/MARKETING_VERSION = 0.5.5;/g" > temp && mv temp App.xcodeproj/project.pbxproj cd - ``` @@ -398,8 +396,6 @@ Prerequisites: macOS with Xcode installed * You'll probably have to "Manage" something about encryption, disallowed in France. * Then "Save" and "Add to Review" and "Resubmit to App Review". -8. Revert the iOS flag isIOS in CapacitorPlatformService. - ### Android Build Prerequisites: Android Studio with Java SDK installed diff --git a/android/app/build.gradle b/android/app/build.gradle index aa23a0b8..9cf402ac 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -31,8 +31,8 @@ android { applicationId "app.timesafari.app" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 30 - versionName "0.5.4" + versionCode 31 + versionName "0.5.5" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index 5ba178bd..a9eeeaa5 100644 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -403,7 +403,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 30; + CURRENT_PROJECT_VERSION = 31; DEVELOPMENT_TEAM = GM3FS5JQPH; ENABLE_APP_SANDBOX = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; @@ -413,7 +413,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 0.5.4; + MARKETING_VERSION = 0.5.5; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = app.timesafari; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -430,7 +430,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 30; + CURRENT_PROJECT_VERSION = 31; DEVELOPMENT_TEAM = GM3FS5JQPH; ENABLE_APP_SANDBOX = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; @@ -440,7 +440,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 0.5.4; + MARKETING_VERSION = 0.5.5; PRODUCT_BUNDLE_IDENTIFIER = app.timesafari; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_ACTIVE_COMPILATION_CONDITIONS = ""; diff --git a/package.json b/package.json index 5b01d39c..bf339b6c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "timesafari", - "version": "0.5.4", + "version": "0.5.5", "description": "Time Safari Application", "author": { "name": "Time Safari Team"