You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a rogue raw_input in targets/ios.py that breaks the build when Buildozer asks for the keychain password in Python 3:
# Package the application
# Run 'security unlock-keychain -u'
# Cwd None
security: SecKeychainUnlock <NULL>: User interaction is not allowed.
Password to unlock the default keychain:
# Run 'security' ...
# Cwd None
The keychain password can be saved in the build directory
As soon as the build directory will be cleaned, the password will be erased.
Traceback (most recent call last):
File "/Users/lerela/Library/Python/3.7/bin/buildozer", line 8, in <module>
sys.exit(main())
File "/Users/lerela/Library/Python/3.7/lib/python/site-packages/buildozer/scripts/client.py", line 13, in main
Buildozer().run_command(sys.argv[1:])
File "/Users/lerela/Library/Python/3.7/lib/python/site-packages/buildozer/__init__.py", line 1071, in run_command
self.target.run_commands(args)
File "/Users/lerela/Library/Python/3.7/lib/python/site-packages/buildozer/target.py", line 92, in run_commands
func(args)
File "/Users/lerela/Library/Python/3.7/lib/python/site-packages/buildozer/target.py", line 104, in cmd_debug
self.buildozer.build()
File "/Users/lerela/Library/Python/3.7/lib/python/site-packages/buildozer/__init__.py", line 214, in build
self.target.build_package()
File "/Users/lerela/Library/Python/3.7/lib/python/site-packages/buildozer/targets/ios.py", line 161, in build_package
self._unlock_keychain()
File "/Users/lerela/Library/Python/3.7/lib/python/site-packages/buildozer/targets/ios.py", line 401, in _unlock_keychain
q = raw_input('Do you want to save the password (Y/n): ')
NameError: name 'raw_input' is not defined
The text was updated successfully, but these errors were encountered:
lerela
added a commit
to lerela/buildozer
that referenced
this issue
Apr 16, 2020
There is a rogue
raw_input
intargets/ios.py
that breaks the build when Buildozer asks for the keychain password in Python 3:The text was updated successfully, but these errors were encountered: