Skip to content

Commit

Permalink
fix ios creating IPA
Browse files Browse the repository at this point in the history
  • Loading branch information
Furtif committed Jul 27, 2022
1 parent 2be59db commit 2306d42
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions buildozer/targets/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,12 @@ def build_package(self):
self.buildozer.info('Creating IPA...')
self.xcodebuild(
'-exportArchive',
f'-archivePath "{xcarchive}"',
f'-exportOptionsPlist "{plist_rfn}"',
f'-exportPath "{ipa_tmp}"',
'-archivePath',
xcarchive,
'-exportOptionsPlist',
plist_rfn,
'-exportPath',
ipa_tmp,
f'CODE_SIGN_IDENTITY={ioscodesign}',
'ENABLE_BITCODE=NO',
cwd=build_dir)
Expand Down

0 comments on commit 2306d42

Please sign in to comment.