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
When attempting to package w/ Buildozer, I see an issues in UTF-8 conversion. Upon inspection in file init.py (for buildozer)
This snippet of code :
process.communicate()
if process.returncode != 0 and break_on_error:
print "[YaGupta-Debug] - Self.CMD Failed, %s" % (command)
self.error('Command failed: {0}'.format(command))
raise BuildozerCommandException()
if ret_stdout:
ret_stdout = b''.join(ret_stdout)
ret_stdout = ret_stdout[0:10741]
if ret_stderr:
ret_stderr = b''.join(ret_stderr)
return (ret_stdout.decode('utf-8') if ret_stdout else None,
ret_stderr.decode('utf-8') if ret_stderr else None,
process.returncode)
Fails the UTF-8 Call (the code above has a few edit from me)
It fails because, there is a character below Intel?VT which fails.
id: 42 or "extra-intel-Hardware_Accelerated_Execution_Manager"
Type: Extra
Desc: Intel x86 Emulator Accelerator (HAXM installer), revision 4
By Intel Corporation
Emulation speedup using Intel? VT processor technology. Read more
at www.intel.com/software/android
Install path: extras/intel/Hardware_Accelerated_Execution_Manager
The text was updated successfully, but these errors were encountered:
File "/usr/local/lib/python2.7/site-packages/buildozer/libs/pexpect.py", line 837
File "/usr/local/lib/python2.7/site-packages/buildozer/libs/pexpect.py", line 1381, in expect_loop
When attempting to package w/ Buildozer, I see an issues in UTF-8 conversion. Upon inspection in file init.py (for buildozer)
This snippet of code :
process.communicate()
if process.returncode != 0 and break_on_error:
print "[YaGupta-Debug] - Self.CMD Failed, %s" % (command)
self.error('Command failed: {0}'.format(command))
raise BuildozerCommandException()
if ret_stdout:
ret_stdout = b''.join(ret_stdout)
ret_stdout = ret_stdout[0:10741]
if ret_stderr:
ret_stderr = b''.join(ret_stderr)
return (ret_stdout.decode('utf-8') if ret_stdout else None,
ret_stderr.decode('utf-8') if ret_stderr else None,
process.returncode)
Fails the UTF-8 Call (the code above has a few edit from me)
It fails because, there is a character below Intel?VT which fails.
id: 42 or "extra-intel-Hardware_Accelerated_Execution_Manager"
Type: Extra
Desc: Intel x86 Emulator Accelerator (HAXM installer), revision 4
By Intel Corporation
Emulation speedup using Intel? VT processor technology. Read more
at www.intel.com/software/android
Install path: extras/intel/Hardware_Accelerated_Execution_Manager
The text was updated successfully, but these errors were encountered: