diff --git a/CONVERSATION_SUMMARY.md b/CONVERSATION_SUMMARY.md index e36db2f9..e4a16d95 100644 --- a/CONVERSATION_SUMMARY.md +++ b/CONVERSATION_SUMMARY.md @@ -13,7 +13,7 @@ Submit Home Inventory app v1.0.6 to TestFlight with new features: - **Team ID**: 2VXBQV4XC9 - **Version**: 1.0.6 (Build 7) - **Developer**: griffinradcliffe@gmail.com -- **App-specific password**: lyto-qjbu-uffy-hsgb (stored in .env) +- **App-specific password**: (stored in .env) ## Core Issue **Swift Version Incompatibility**: diff --git a/TESTFLIGHT_SUBMISSION_STATUS.md b/TESTFLIGHT_SUBMISSION_STATUS.md index bdf3825e..2c3e3594 100644 --- a/TESTFLIGHT_SUBMISSION_STATUS.md +++ b/TESTFLIGHT_SUBMISSION_STATUS.md @@ -62,7 +62,7 @@ If you prefer manual upload: ## Credentials Available ✅ Apple ID: griffinradcliffe@gmail.com -✅ App-Specific Password: lyto-qjbu-uffy-hsgb +✅ App-Specific Password: ✅ Team ID: 2VXBQV4XC9 ✅ Bundle ID: com.homeinventory.app diff --git a/scripts/build_and_upload.rb b/scripts/build_and_upload.rb index 13bd002d..e4353f43 100644 --- a/scripts/build_and_upload.rb +++ b/scripts/build_and_upload.rb @@ -5,7 +5,7 @@ # Set credentials ENV['FASTLANE_USER'] = 'griffinradcliffe@gmail.com' -ENV['FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD'] = 'lyto-qjbu-uffy-hsgb' +ENV['FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD'] = '' puts "🚀 Building and Uploading to TestFlight" puts "======================================" diff --git a/scripts/build_testflight.rb b/scripts/build_testflight.rb index f4aaf3ae..ce67f1c5 100755 --- a/scripts/build_testflight.rb +++ b/scripts/build_testflight.rb @@ -88,7 +88,7 @@ '-f', 'build/HomeInventoryModular.ipa', '-t', 'ios', '-u', 'griffinradcliffe@gmail.com', - '-p', ENV['FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD'] || 'lyto-qjbu-uffy-hsgb' + '-p', ENV['FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD'] || '' ] if system(*upload_cmd) diff --git a/scripts/deliver_ipa.rb b/scripts/deliver_ipa.rb index 37fe54db..34590495 100755 --- a/scripts/deliver_ipa.rb +++ b/scripts/deliver_ipa.rb @@ -6,7 +6,7 @@ # Configuration IPA_PATH = File.expand_path('../build/HomeInventoryModular-1.0.6.ipa', __dir__) USERNAME = 'griffinradcliffe@gmail.com' -APP_SPECIFIC_PASSWORD = 'lyto-qjbu-uffy-hsgb' +APP_SPECIFIC_PASSWORD = '' # Set environment ENV['DELIVER_USER'] = USERNAME diff --git a/scripts/legacy_build.sh b/scripts/legacy_build.sh index ca25fc1c..cfb0f94c 100755 --- a/scripts/legacy_build.sh +++ b/scripts/legacy_build.sh @@ -83,7 +83,7 @@ EOF echo "📦 IPA location: build/HomeInventoryModular.ipa" echo "" echo "📤 Upload to TestFlight:" - echo " xcrun altool --upload-app -f build/HomeInventoryModular.ipa -u griffinradcliffe@gmail.com -p lyto-qjbu-uffy-hsgb" + echo " xcrun altool --upload-app -f build/HomeInventoryModular.ipa -u griffinradcliffe@gmail.com -p " else echo "❌ Export failed" fi diff --git a/scripts/monitor_and_upload.rb b/scripts/monitor_and_upload.rb index b641432b..97defcfa 100755 --- a/scripts/monitor_and_upload.rb +++ b/scripts/monitor_and_upload.rb @@ -6,7 +6,7 @@ # Configuration ARCHIVE_PATH = "#{ENV['HOME']}/Library/Developer/Xcode/Archives" USERNAME = 'griffinradcliffe@gmail.com' -PASSWORD = 'lyto-qjbu-uffy-hsgb' +PASSWORD = '' TEAM_ID = '2VXBQV4XC9' puts "🔍 Monitoring for new archives..." diff --git a/scripts/swift6_workaround.rb b/scripts/swift6_workaround.rb index 1b7ac69a..055b6980 100644 --- a/scripts/swift6_workaround.rb +++ b/scripts/swift6_workaround.rb @@ -93,7 +93,7 @@ def upload_to_testflight "-f", ipa_path, "-t", "ios", "-u", "griffinradcliffe@gmail.com", - "-p", "lyto-qjbu-uffy-hsgb" + "-p", "" ] if system(*upload_cmd) diff --git a/scripts/testflight_upload.rb b/scripts/testflight_upload.rb index d3aacf3e..c2d1393f 100755 --- a/scripts/testflight_upload.rb +++ b/scripts/testflight_upload.rb @@ -7,7 +7,7 @@ APP_IDENTIFIER = 'com.homeinventory.app' IPA_PATH = 'build/HomeInventoryModular-1.0.6.ipa' USERNAME = 'griffinradcliffe@gmail.com' -APP_SPECIFIC_PASSWORD = 'lyto-qjbu-uffy-hsgb' +APP_SPECIFIC_PASSWORD = '' TEAM_ID = '2VXBQV4XC9' puts "🚀 TestFlight Upload via Ruby Spaceship" diff --git a/upload_to_testflight.rb b/upload_to_testflight.rb index f259d86a..e33fc074 100755 --- a/upload_to_testflight.rb +++ b/upload_to_testflight.rb @@ -76,5 +76,5 @@ puts "" puts "Credentials available:" puts "• Username: griffinradcliffe@gmail.com" -puts "• App-specific password: lyto-qjbu-uffy-hsgb" +puts "• App-specific password: " puts "• Team ID: 2VXBQV4XC9" \ No newline at end of file