要将React Native应用程序上传到App Store,可以使用以下方法,而无需使用Application Loader:
使用Xcode进行打包:
react-native run-ios --configuration Release
使用Fastlane进行自动化构建和上传:
sudo gem install fastlane -NV
fastlane init
lane :release do
gradle(
task: "clean assembleRelease",
build_type: "release",
print_command: false
)
upload_to_play_store
end
fastlane release
这些方法将帮助您将React Native应用程序上传到App Store,而无需使用Application Loader。