Skip to content

Commit

Permalink
Merge branch 'master' into update/from_rainbo
Browse files Browse the repository at this point in the history
  • Loading branch information
chuck-h committed Jun 8, 2024
2 parents c60c7a8 + ce2ca60 commit 5e13c5c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>9.0</string>
<string>14.0</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
</dict>
Expand Down
26 changes: 26 additions & 0 deletions upload_ios_build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/sh

## archive and upload the app to ios App store

flutter build ipa --release
open -a "Transporter" "build/ios/ipa/SEEDS Wallet.ipa"

# depends on xcpretty
# If you don't have "xcpretty" installed either install it with 'gem install xcpretty' or remove
# the pipeline

# Build the app with Flutter
# flutter build ios --release

# Archive the .app to .xcarchive
# xcodebuild archive -workspace ios/Runner.xcworkspace -scheme Runner -archivePath ios/archive/Runner.xcarchive -destination 'generic/platform=iOS' | xcpretty

# Export the .xcarchive to .ipa
# xcodebuild -exportArchive -archivePath ios/archive/Runner.xcarchive -exportOptionsPlist appstore/ExportOptions.plist -exportPath ios/build | xcpretty

# Upload to App Store using Transporter

# xcrun altool --upload-app --type ios --file "ios/build/Runner.ipa" --username "YOUR_APPLE_ID_EMAIL" --password "YOUR_APP_SPECIFIC_PASSWORD"

# Or just open the ipa file in transporter
# open -a "Transporter" /Users/elohim/play/hypha/hypha_wallet/ios/build/hypha_wallet.ipa

0 comments on commit 5e13c5c

Please sign in to comment.