Aqeel Ashiq
Aqeel Ashiq

Reputation: 2185

Exception Occured While Building Android project

OS: Linux mint 14.

Following error occurs when I try to run my project.

[TRACE] Writing out AndroidManifest.xml
[ERROR] Exception occured while building Android project:
[ERROR] Traceback (most recent call last):
[ERROR]   File "/home/aqeel/.titanium/mobilesdk/linux/3.1.0.GA/android/builder.py", line 2528, in <module>
[ERROR]     builder.build_and_run(False, avd_id, debugger_host=debugger_host, profiler_host=profiler_host)
[ERROR]   File "/home/aqeel/.titanium/mobilesdk/linux/3.1.0.GA/android/builder.py", line 2264, in build_and_run
[ERROR]     self.manifest_changed = self.generate_android_manifest(compiler)
[ERROR]   File "/home/aqeel/.titanium/mobilesdk/linux/3.1.0.GA/android/builder.py", line 1404, in generate_android_manifest
[ERROR]     '-I', self.android_jar], warning_regex=r'skipping')
[ERROR]   File "/home/aqeel/.titanium/mobilesdk/linux/3.1.0.GA/android/run.py", line 38, in run
[ERROR]     print "[DEBUG] %s" % subprocess.list2cmdline(args_to_log)
[ERROR]   File "/usr/lib/python2.7/subprocess.py", line 587, in list2cmdline
[ERROR]     needquote = (" " in arg) or ("\t" in arg) or not arg
[ERROR] TypeError: argument of type 'NoneType' is not iterable
[ERROR] :  Build process exited with code 1
[ERROR] :  Project failed to build after 1m 7s 999ms

Upvotes: 3

Views: 1583

Answers (2)

Jonah
Jonah

Reputation: 16202

If you run into this issue on a new install of Titanium Studio, make sure that in your app's "tiapp.xml", under build properties, "Titanium SDK" is set to 3.1.3GA (or, for future readers, whatever the latest version is).

Upvotes: 0

daishin
daishin

Reputation: 176

try downgrade Android SDK tools (maybe also platform-tool and build tools) rev22 to rev21. same problem occurred my mac(OSX 10.8.3). I restored Android SDK directory from timemachine.

Upvotes: 6

Related Questions