<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
> 
<channel>
	<title>Appcelerator Developer Center Q&amp;A Tag Feed (install)</title> 
	<atom:link href="http://developer.appcelerator.com/questions/feed/tag/install" rel="self" type="application/rss+xml" /> 
	<link>http://developer.appcelerator.com/questions/feed/tag/install</link> 
	<description>Appcelerator Developer Center Q&amp;A feed for the tag: "install"</description> 
	<lastBuildDate>Tue, 21 May 2013 18:59:10 -0700</lastBuildDate> 
	<pubDate>Tue, 21 May 2013 18:59:10 -0700</pubDate>
	<copyright>Copyright (c) 2008-2013 by Appcelerator Inc.</copyright>
	<webMaster>info@appcelerator.com</webMaster>
	<generator>Appcelerator Developer Center</generator>
	<ttl>5</ttl>
	<language>en</language>
	<item>
		<title>Titanium.Database.install install database empty</title> 
		<link>http://developer.appcelerator.com/question/132408/titaniumdatabaseinstall-install-database-empty</link>
		<pubDate>Sun, 19 Feb 2012 06:29:28 -0800</pubDate>
		<dc:creator>Marco Aurelio Osorio</dc:creator> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[database]]></category> 
				<category><![CDATA[database empty]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/132408/titaniumdatabaseinstall-install-database-empty</guid>
		<description><![CDATA[Hi,

The problem I have when running the instruction to install the database Titanium.Database.install not working properly.
I put the database file on all sites but always installs the empty database.
When I access one of the tables produces error table does not exist.
Use the following code

~~~

DbConstants.DB_NAME = 'testdb';
DbConstants.DB_PATH_SOURCE = '../db.sqlite';

this.installDataBase = function() {
	Ti.API.debug(&quot;installDataBase &lt;--&quot;);
		
	if ( Ti.Platform.osname == 'android' ) {
		file = Ti.Filesystem.getFile('file:///data/data/'+ Ti.App.getID() + '/databases/' + DbConstants.DB_NAME);
		} else {
            file = Ti.Filesystem.getFile(Ti.Filesystem.applicationSupportDirectory + '/database/' + dbName + '.sql');
        }
        
	//If it's there, delete it and reinstall the DB
	if(file.exists()) {
		Ti.API.debug(&quot;database exist!!&quot;);
		file.deleteFile();
		Titanium.Database.install(DbConstants.DB_PATH_SOURCE, DbConstants.DB_NAME);
	} else {
	    //Otherwise, install it for the first time
        Titanium.Database.install(DbConstants.DB_PATH_SOURCE, DbConstants.DB_NAME);
	}

	Ti.API.debug(&quot;installDataBase --&gt;&quot;);
	};

~~~

System used
-Titanium version 1.8.1
-Android 2.3.3
-Win 7

Thanks for any help]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>

<p>The problem I have when running the instruction to install the database Titanium.Database.install not working properly.
I put the database file on all sites but always installs the empty database.
When I access one of the tables produces error table does not exist.
Use the following code
<pre class="javascript codeblock">DbConstants.<span class="me1">DB_NAME</span> <span class="sy0">=</span> <span class="st0">'testdb'</span><span class="sy0">;</span>
DbConstants.<span class="me1">DB_PATH_SOURCE</span> <span class="sy0">=</span> <span class="st0">'../db.sqlite'</span><span class="sy0">;</span>
&nbsp;
<span class="kw1">this</span>.<span class="me1">installDataBase</span> <span class="sy0">=</span> <span class="kw2">function</span><span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
    Ti.<span class="me1">API</span>.<span class="me1">debug</span><span class="br0">&#40;</span><span class="st0">&quot;installDataBase &lt;--&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
    <span class="kw1">if</span> <span class="br0">&#40;</span> Ti.<span class="me1">Platform</span>.<span class="me1">osname</span> <span class="sy0">==</span> <span class="st0">'android'</span> <span class="br0">&#41;</span> <span class="br0">&#123;</span>
        file <span class="sy0">=</span> Ti.<span class="me1">Filesystem</span>.<span class="me1">getFile</span><span class="br0">&#40;</span><span class="st0">'file:///data/data/'</span><span class="sy0">+</span> Ti.<span class="me1">App</span>.<span class="me1">getID</span><span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="sy0">+</span> <span class="st0">'/databases/'</span> <span class="sy0">+</span> DbConstants.<span class="me1">DB_NAME</span><span class="br0">&#41;</span><span class="sy0">;</span>
        <span class="br0">&#125;</span> <span class="kw1">else</span> <span class="br0">&#123;</span>
            file <span class="sy0">=</span> Ti.<span class="me1">Filesystem</span>.<span class="me1">getFile</span><span class="br0">&#40;</span>Ti.<span class="me1">Filesystem</span>.<span class="me1">applicationSupportDirectory</span> <span class="sy0">+</span> <span class="st0">'/database/'</span> <span class="sy0">+</span> dbName <span class="sy0">+</span> <span class="st0">'.sql'</span><span class="br0">&#41;</span><span class="sy0">;</span>
        <span class="br0">&#125;</span>
&nbsp;
    <span class="co1">//If it's there, delete it and reinstall the DB</span>
    <span class="kw1">if</span><span class="br0">&#40;</span>file.<span class="me1">exists</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
        Ti.<span class="me1">API</span>.<span class="me1">debug</span><span class="br0">&#40;</span><span class="st0">&quot;database exist!!&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span>
        file.<span class="me1">deleteFile</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span>
        Titanium.<span class="me1">Database</span>.<span class="me1">install</span><span class="br0">&#40;</span>DbConstants.<span class="me1">DB_PATH_SOURCE</span><span class="sy0">,</span> DbConstants.<span class="me1">DB_NAME</span><span class="br0">&#41;</span><span class="sy0">;</span>
    <span class="br0">&#125;</span> <span class="kw1">else</span> <span class="br0">&#123;</span>
        <span class="co1">//Otherwise, install it for the first time</span>
        Titanium.<span class="me1">Database</span>.<span class="me1">install</span><span class="br0">&#40;</span>DbConstants.<span class="me1">DB_PATH_SOURCE</span><span class="sy0">,</span> DbConstants.<span class="me1">DB_NAME</span><span class="br0">&#41;</span><span class="sy0">;</span>
    <span class="br0">&#125;</span>
&nbsp;
    Ti.<span class="me1">API</span>.<span class="me1">debug</span><span class="br0">&#40;</span><span class="st0">&quot;installDataBase --&gt;&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span>
    <span class="br0">&#125;</span><span class="sy0">;</span></pre>
System used
-Titanium version 1.8.1
-Android 2.3.3
-Win 7</p>

<p>Thanks for any help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Problem with installing database.</title> 
		<link>http://developer.appcelerator.com/question/142821/problem-with-installing-database</link>
		<pubDate>Fri, 28 Sep 2012 05:05:31 -0700</pubDate>
		<dc:creator>Robin Lammers</dc:creator> 
				<category><![CDATA[android]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[database]]></category> 
				<category><![CDATA[runtime error]]></category> 
				<category><![CDATA[invoker]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/142821/problem-with-installing-database</guid>
		<description><![CDATA[Hello there,

I  have a problem with installing a database;


In the app. js i have the following code:

~~~
var db = Ti.Database.install('radar.db', 'radar');
    db.close();In my resources folder there is a file/database called radar.db.

in another .js file i try to open the database with the following code: 
db = Ti.Database.open ( 'radar' ); 
~~~

When i start the app i get a runtime error message wich says:

~~~
Location:
=======
[102,19]ti:/invoker.js

Message:
=======
Uncaught Error: install: Invalid number of arguments. Excpected 3 but got 2

Source:
======
    return delegate.apply(invoker.__thisOBj__,

 args);

~~~

Its a mobile project using titanium sdk 2.1.2 GA for android 4.0.3

Does somebody have the answer for this problem?

Thanks in advance!]]></description>
		<content:encoded><![CDATA[<p>Hello there,</p>

<p>I  have a problem with installing a database;</p>

<p>In the app. js i have the following code:
<pre class="javascript codeblock"><span class="kw2">var</span> db <span class="sy0">=</span> Ti.<span class="me1">Database</span>.<span class="me1">install</span><span class="br0">&#40;</span><span class="st0">'radar.db'</span><span class="sy0">,</span> <span class="st0">'radar'</span><span class="br0">&#41;</span><span class="sy0">;</span>
    db.<span class="kw3">close</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span>In my resources folder there <span class="kw1">is</span> a file<span class="sy0">/</span>database called radar.<span class="me1">db</span>.
&nbsp;
<span class="kw1">in</span> another .<span class="me1">js</span> file i <span class="kw1">try</span> to <span class="kw3">open</span> the database <span class="kw1">with</span> the following code<span class="sy0">:</span> 
db <span class="sy0">=</span> Ti.<span class="me1">Database</span>.<span class="kw3">open</span> <span class="br0">&#40;</span> <span class="st0">'radar'</span> <span class="br0">&#41;</span><span class="sy0">;</span></pre>
When i start the app i get a runtime error message wich says:
<pre class="javascript codeblock">Location<span class="sy0">:</span>
<span class="sy0">=======</span>
<span class="br0">&#91;</span><span class="nu0">102</span><span class="sy0">,</span><span class="nu0">19</span><span class="br0">&#93;</span>ti<span class="sy0">:/</span>invoker.<span class="me1">js</span>
&nbsp;
Message<span class="sy0">:</span>
<span class="sy0">=======</span>
Uncaught Error<span class="sy0">:</span> install<span class="sy0">:</span> Invalid number of arguments. <span class="me1">Excpected</span> <span class="nu0">3</span> but got <span class="nu0">2</span>
&nbsp;
Source<span class="sy0">:</span>
<span class="sy0">======</span>
    <span class="kw1">return</span> delegate.<span class="me1">apply</span><span class="br0">&#40;</span>invoker.__thisOBj__<span class="sy0">,</span>
&nbsp;
 args<span class="br0">&#41;</span><span class="sy0">;</span></pre>
Its a mobile project using titanium sdk 2.1.2 GA for android 4.0.3</p>

<p>Does somebody have the answer for this problem?</p>

<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>problem with the Titanium Studio autocomplete</title> 
		<link>http://developer.appcelerator.com/question/152355/problem-with-the-titanium-studio-autocomplete</link>
		<pubDate>Tue, 14 May 2013 05:14:42 -0700</pubDate>
		<dc:creator>Karray Gargouri</dc:creator> 
				<category><![CDATA[android]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[application]]></category> 
				<category><![CDATA[autocomplete]]></category> 
				<category><![CDATA[titanium studio]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/152355/problem-with-the-titanium-studio-autocomplete</guid>
		<description><![CDATA[Hello everyone,

I am facing a problem with the autocomplete into the Titanium Studio... I tried to install and re-install the IDE but in vain...

I am working with the new SDK (3.1.0) and I am developing for Android!

Thanks in advance...]]></description>
		<content:encoded><![CDATA[<p>Hello everyone,</p>

<p>I am facing a problem with the autocomplete into the Titanium Studio... I tried to install and re-install the IDE but in vain...</p>

<p>I am working with the new SDK (3.1.0) and I am developing for Android!</p>

<p>Thanks in advance...</p>
]]></content:encoded>
	</item>
	<item>
		<title>Problem with database on iOS device</title> 
		<link>http://developer.appcelerator.com/question/151657/problem-with-database-on-ios-device</link>
		<pubDate>Sat, 27 Apr 2013 08:00:13 -0700</pubDate>
		<dc:creator>Alberto Sanchez</dc:creator> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[database]]></category> 
				<category><![CDATA[application]]></category> 
				<category><![CDATA[device]]></category> 
				<category><![CDATA[ios]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/151657/problem-with-database-on-ios-device</guid>
		<description><![CDATA[Hi, I need some help with titanium.datatabase.install.

I'm having problem with database on iOS device. When I pass de app to device and try to run on, error appear with the next message:

invalid database install path. /var/mobile/Applications/AF3ED534-B983-48EC-926C-84C456200AA7/Ejercicio1.app/UsuariosDB.sql in -[TiDatabaseProxy install:name:] (TiDatabaseProxy.m:145) at app.js (line 1)

Here's my code:

var db = Titanium.Database.install('UsuariosDB.sql','UsuariosDB');

Thanks for helps.]]></description>
		<content:encoded><![CDATA[<p>Hi, I need some help with titanium.datatabase.install.</p>

<p>I'm having problem with database on iOS device. When I pass de app to device and try to run on, error appear with the next message:</p>

<p>invalid database install path. /var/mobile/Applications/AF3ED534-B983-48EC-926C-84C456200AA7/Ejercicio1.app/UsuariosDB.sql in -[TiDatabaseProxy install:name:] (TiDatabaseProxy.m:145) at app.js (line 1)</p>

<p>Here's my code:</p>

<p>var db = Titanium.Database.install('UsuariosDB.sql','UsuariosDB');</p>

<p>Thanks for helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>ios sdk on ubuntu 12.04</title> 
		<link>http://developer.appcelerator.com/question/151915/ios-sdk-on-ubuntu-1204</link>
		<pubDate>Fri, 03 May 2013 01:21:45 -0700</pubDate>
		<dc:creator>timmy d</dc:creator> 
				<category><![CDATA[ubuntu]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[sdk]]></category> 
				<category><![CDATA[xcode]]></category> 
				<category><![CDATA[ios]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/151915/ios-sdk-on-ubuntu-1204</guid>
		<description><![CDATA[I? having a hard time to comprehend the philosophy of Apple inc...

I knew the way they do business has let too many discussions but please tell me this is true or not.

In order to install Xcode (for dev) I need to:
A.- buy a Mac machine?!?
B.- pay 99 bugs each year....
C.- and split the profit with them when i sell an app in the apple store?]]></description>
		<content:encoded><![CDATA[<p>I? having a hard time to comprehend the philosophy of Apple inc...</p>

<p>I knew the way they do business has let too many discussions but please tell me this is true or not.</p>

<p>In order to install Xcode (for dev) I need to:
A.- buy a Mac machine?!?
B.- pay 99 bugs each year....
C.- and split the profit with them when i sell an app in the apple store?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Using android emulator i get: Device does not have package X</title> 
		<link>http://developer.appcelerator.com/question/149961/using-android-emulator-i-get-device-does-not-have-package-x</link>
		<pubDate>Sat, 23 Mar 2013 18:35:47 -0700</pubDate>
		<dc:creator>Imanol Quindós</dc:creator> 
				<category><![CDATA[android]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[emulator]]></category> 
				<category><![CDATA[module]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/149961/using-android-emulator-i-get-device-does-not-have-package-x</guid>
		<description><![CDATA[i'm using titanium SDK 2.1.3 GA and the module works fine for android devices, but i can't install the app in the emulator.
The module is a push notification manager so it won't work in the emulator, but i don't understand why it won't install the app.

Any idea about this?

Can i avoid the installation of that package for the android emulator?

Thanks in advance.]]></description>
		<content:encoded><![CDATA[<p>i'm using titanium SDK 2.1.3 GA and the module works fine for android devices, but i can't install the app in the emulator.
The module is a push notification manager so it won't work in the emulator, but i don't understand why it won't install the app.</p>

<p>Any idea about this?</p>

<p>Can i avoid the installation of that package for the android emulator?</p>

<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>iOS 4.2 Build onto Device Fails</title> 
		<link>http://developer.appcelerator.com/question/85031/ios-42-build-onto-device-fails</link>
		<pubDate>Wed, 01 Dec 2010 12:08:55 -0800</pubDate>
		<dc:creator>Justin Howard</dc:creator> 
				<category><![CDATA[iphone]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[build]]></category> 
				<category><![CDATA[4.2]]></category> 
				<category><![CDATA[4.2sdk]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/85031/ios-42-build-onto-device-fails</guid>
		<description><![CDATA[Hi

I am trying to deploy my final BETA onto the device before I build for distribution, however I keep getting an install failed.

Below is the report from the build.log, can anyone shed any light? I am on a really tight timescale :(

~~~
** BUILD FAILED **


The following build commands failed:
Knight Finder:
	PhaseScriptExecution Pre-Compile &quot;/Users/thesargenator/Titanium/Knight Finder/build/iphone/build/Knight Finder.build/Release-iphoneos/Knight Finder.build/Script-241EAF36118E30260081A5BE.sh&quot;
(1 failure)

EXIT CODE WAS: 1

Exception detected in script:
Traceback (most recent call last):
  File &quot;/Library/Application Support/Titanium/mobilesdk/osx/1.4.2/iphone/builder.py&quot;, line 994, in main
    execute_xcode(&quot;iphoneos%s&quot; % iphone_version,args,False)
  File &quot;/Library/Application Support/Titanium/mobilesdk/osx/1.4.2/iphone/builder.py&quot;, line 790, in execute_xcode
    output = run.run(args,False,False,o)
  File &quot;/Library/Application Support/Titanium/mobilesdk/osx/1.4.2/iphone/run.py&quot;, line 31, in run
    sys.exit(rc)
SystemExit: 1
 
~~~]]></description>
		<content:encoded><![CDATA[<p>Hi</p>

<p>I am trying to deploy my final BETA onto the device before I build for distribution, however I keep getting an install failed.</p>

<p>Below is the report from the build.log, can anyone shed any light? I am on a really tight timescale :(
<pre class="javascript codeblock"><span class="sy0">**</span> BUILD FAILED <span class="sy0">**</span>
&nbsp;
&nbsp;
The following build commands failed<span class="sy0">:</span>
Knight Finder<span class="sy0">:</span>
    PhaseScriptExecution Pre<span class="sy0">-</span>Compile <span class="st0">&quot;/Users/thesargenator/Titanium/Knight Finder/build/iphone/build/Knight Finder.build/Release-iphoneos/Knight Finder.build/Script-241EAF36118E30260081A5BE.sh&quot;</span>
<span class="br0">&#40;</span><span class="nu0">1</span> failure<span class="br0">&#41;</span>
&nbsp;
EXIT CODE WAS<span class="sy0">:</span> <span class="nu0">1</span>
&nbsp;
Exception detected <span class="kw1">in</span> script<span class="sy0">:</span>
Traceback <span class="br0">&#40;</span>most recent call last<span class="br0">&#41;</span><span class="sy0">:</span>
  File <span class="st0">&quot;/Library/Application Support/Titanium/mobilesdk/osx/1.4.2/iphone/builder.py&quot;</span><span class="sy0">,</span> line <span class="nu0">994</span><span class="sy0">,</span> <span class="kw1">in</span> main
    execute_xcode<span class="br0">&#40;</span><span class="st0">&quot;iphoneos%s&quot;</span> <span class="sy0">%</span> iphone_version<span class="sy0">,</span>args<span class="sy0">,</span><span class="kw2">False</span><span class="br0">&#41;</span>
  File <span class="st0">&quot;/Library/Application Support/Titanium/mobilesdk/osx/1.4.2/iphone/builder.py&quot;</span><span class="sy0">,</span> line <span class="nu0">790</span><span class="sy0">,</span> <span class="kw1">in</span> execute_xcode
    output <span class="sy0">=</span> run.<span class="me1">run</span><span class="br0">&#40;</span>args<span class="sy0">,</span><span class="kw2">False</span><span class="sy0">,</span><span class="kw2">False</span><span class="sy0">,</span>o<span class="br0">&#41;</span>
  File <span class="st0">&quot;/Library/Application Support/Titanium/mobilesdk/osx/1.4.2/iphone/run.py&quot;</span><span class="sy0">,</span> line <span class="nu0">31</span><span class="sy0">,</span> <span class="kw1">in</span> run
    sys.<span class="me1">exit</span><span class="br0">&#40;</span>rc<span class="br0">&#41;</span>
SystemExit<span class="sy0">:</span> <span class="nu0">1</span></pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>Cannot get first updates after installing Titanium.  Not able to get up and running...</title> 
		<link>http://developer.appcelerator.com/question/151663/cannot-get-first-updates-after-installing-titanium-not-able-to-get-up-and-running</link>
		<pubDate>Sat, 27 Apr 2013 13:13:23 -0700</pubDate>
		<dc:creator>Kristen Watterson</dc:creator> 
				<category><![CDATA[mac]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[update]]></category> 
				<category><![CDATA[installation]]></category> 
				<category><![CDATA[osx]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/151663/cannot-get-first-updates-after-installing-titanium-not-able-to-get-up-and-running</guid>
		<description><![CDATA[I just installed Titanium, I'm on a Macbook Pro running the latest updated Mountain Lion.  First, 
It kept giving me a password error when I would try to install updates that the studio said were available.  I fixed my password issue by doing command R at the reboot.  Now, it accepts the password but still won't install the updates.  I click ok after entering the password and it just sits there, doing nothing. I've tried downloading them manually, and I even read about using the terminal and was able to get 3.1.0.GA from the terminal, however, the update utility still says I need Titanium SDK 3.1.0.GA and Node.ACS ... I have downloaded the Node.acs and npm from wherever you're supposed to get them and it tells me to make sure my user/local/bin is in my $path... I don't know where that is!  look, I'm not a code warrior -- I'm having to google and learn what each of these things mean in order to even get them in the right places, and titanium is still not recognizing that they exist.  I'm getting pretty frustrated because I am new to this and I can't even get the software working correctly to even start learning to make my very first app.  This is a cry for help! LOL  is there any easier way to make this work so I can get started?  XO]]></description>
		<content:encoded><![CDATA[<p>I just installed Titanium, I'm on a Macbook Pro running the latest updated Mountain Lion.  First, 
It kept giving me a password error when I would try to install updates that the studio said were available.  I fixed my password issue by doing command R at the reboot.  Now, it accepts the password but still won't install the updates.  I click ok after entering the password and it just sits there, doing nothing. I've tried downloading them manually, and I even read about using the terminal and was able to get 3.1.0.GA from the terminal, however, the update utility still says I need Titanium SDK 3.1.0.GA and Node.ACS ... I have downloaded the Node.acs and npm from wherever you're supposed to get them and it tells me to make sure my user/local/bin is in my $path... I don't know where that is!  look, I'm not a code warrior -- I'm having to google and learn what each of these things mean in order to even get them in the right places, and titanium is still not recognizing that they exist.  I'm getting pretty frustrated because I am new to this and I can't even get the software working correctly to even start learning to make my very first app.  This is a cry for help! LOL  is there any easier way to make this work so I can get started?  XO</p>
]]></content:encoded>
	</item>
	<item>
		<title>Cannot install on android emulator</title> 
		<link>http://developer.appcelerator.com/question/151607/cannot-install-on-android-emulator</link>
		<pubDate>Fri, 26 Apr 2013 00:17:09 -0700</pubDate>
		<dc:creator>Luke Peek</dc:creator> 
				<category><![CDATA[android]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[error]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/151607/cannot-install-on-android-emulator</guid>
		<description><![CDATA[Hey I've been trying for hours now to get an app to install on the android emulator. Sometimes it works, but 90% of the time I get the error:
~~~
pkg: /data/local/tmp/app.apk
Failure [INSTALL_FAILED_CONTAINER_ERROR]
~~~

Initially I kept getting [INSTALL_FAILED_INSUFFICIENT_STORAGE] but this was fixed by changing some manifest settings etc as usually expected from android. But I've never seen a container error before.

I've seen people with suggestions which I have followed, none of which work. Including increasing the SD card size in AVD manager. changing `android:installLocation` from preferExternal to auto, cleaning the build, restarting the emulator, restarting titanium etc. none of which have worked.

Anyone has this issue before and can give any insight?

I'm using Google APIs 4.1.2 and have tried on Google APIs 4.0]]></description>
		<content:encoded><![CDATA[<p>Hey I've been trying for hours now to get an app to install on the android emulator. Sometimes it works, but 90% of the time I get the error:<pre class="javascript codeblock">pkg<span class="sy0">:</span> <span class="sy0">/</span>data<span class="sy0">/</span>local<span class="sy0">/</span>tmp<span class="sy0">/</span>app.<span class="me1">apk</span>
Failure <span class="br0">&#91;</span>INSTALL_FAILED_CONTAINER_ERROR<span class="br0">&#93;</span></pre>
Initially I kept getting [INSTALL_FAILED_INSUFFICIENT_STORAGE] but this was fixed by changing some manifest settings etc as usually expected from android. But I've never seen a container error before.</p>

<p>I've seen people with suggestions which I have followed, none of which work. Including increasing the SD card size in AVD manager. changing <code class="codeblock codeblock-inline">android:installLocation</code> from preferExternal to auto, cleaning the build, restarting the emulator, restarting titanium etc. none of which have worked.</p>

<p>Anyone has this issue before and can give any insight?</p>

<p>I'm using Google APIs 4.1.2 and have tried on Google APIs 4.0</p>
]]></content:encoded>
	</item>
	<item>
		<title>Download previous versions of Titanium SDK</title> 
		<link>http://developer.appcelerator.com/question/130645/download-previous-versions-of-titanium-sdk</link>
		<pubDate>Fri, 13 Jan 2012 10:03:56 -0800</pubDate>
		<dc:creator>Mat Lop</dc:creator> 
				<category><![CDATA[mobile]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[version]]></category> 
				<category><![CDATA[download]]></category> 
				<category><![CDATA[titanium sdk]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/130645/download-previous-versions-of-titanium-sdk</guid>
		<description><![CDATA[Hi. I just installed the Titanium Studio in my computer to work on a project that uses Titanium SDK 1.7.5. But Titanium Studio only let's me download the latest version, 1.8. 

Is there a way to download Titanium SDK 1.7.5 ?


- Application type: mobile 
- Titanium SDK: 1.8.0.1 
- Host Operating: Windows XP Professional SP2 
- Titanium Studio: 1.0.7.201112281340]]></description>
		<content:encoded><![CDATA[<p>Hi. I just installed the Titanium Studio in my computer to work on a project that uses Titanium SDK 1.7.5. But Titanium Studio only let's me download the latest version, 1.8.</p>

<p>Is there a way to download Titanium SDK 1.7.5 ?</p>

<ul>
<li>Application type: mobile </li>
<li>Titanium SDK: 1.8.0.1 </li>
<li>Host Operating: Windows XP Professional SP2 </li>
<li>Titanium Studio: 1.0.7.201112281340</li>
</ul>
]]></content:encoded>
	</item>
	<item>
		<title>IPhone simulator crash!</title> 
		<link>http://developer.appcelerator.com/question/151002/iphone-simulator-crash</link>
		<pubDate>Tue, 16 Apr 2013 01:48:04 -0700</pubDate>
		<dc:creator>Ian Ortega</dc:creator> 
				<category><![CDATA[iphone]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[emulator]]></category> 
				<category><![CDATA[crash]]></category> 
				<category><![CDATA[titanium]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/151002/iphone-simulator-crash</guid>
		<description><![CDATA[First sorry if my english is not very well, ok.
My problem is that the emulator of IPhone an IPad crashes when y run my apps on it, i have downgrade to Node.js 0.8 but there is another problem:

---
[INFO] :   Launching application in iOS Simulator
[ERROR] :  An error occurred running the iOS Simulator
[ERROR] :  [DEBUG] Session could not be started: Error Domain=DTiPhoneSimulatorErrorDomain Code=1 &quot;Simulador iOS no ha podido instalar la aplicación.&quot; UserInfo=0x100301270 {NSLocalizedDescription=Simulador iOS no ha podido instalar la aplicación., DTiPhoneSimulatorUnderlyingErrorCodeKey=-1}
[ERROR] :  
[ERROR] :  Project failed to build after 2s 220ms
---

I try reseting content and settings but the error still there...

please, help me, I don't know what i have to do!

Thanks]]></description>
		<content:encoded><![CDATA[<p>First sorry if my english is not very well, ok.
My problem is that the emulator of IPhone an IPad crashes when y run my apps on it, i have downgrade to Node.js 0.8 but there is another problem:</p>

<hr />

<p>[INFO] :   Launching application in iOS Simulator
[ERROR] :  An error occurred running the iOS Simulator
[ERROR] :  [DEBUG] Session could not be started: Error Domain=DTiPhoneSimulatorErrorDomain Code=1 &quot;Simulador iOS no ha podido instalar la aplicación.&quot; UserInfo=0x100301270 {NSLocalizedDescription=Simulador iOS no ha podido instalar la aplicación., DTiPhoneSimulatorUnderlyingErrorCodeKey=-1}
[ERROR] :</p>

<h2>[ERROR] :  Project failed to build after 2s 220ms</h2>

<p>I try reseting content and settings but the error still there...</p>

<p>please, help me, I don't know what i have to do!</p>

<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Android : &quot;An application restart is required&quot; - app in Market</title> 
		<link>http://developer.appcelerator.com/question/129411/android--an-application-restart-is-required---app-in-market</link>
		<pubDate>Tue, 13 Dec 2011 13:40:19 -0800</pubDate>
		<dc:creator>Kosso .</dc:creator> 
				<category><![CDATA[android]]></category> 
				<category><![CDATA[bug]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[market]]></category> 
				<category><![CDATA[restart]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/129411/android--an-application-restart-is-required---app-in-market</guid>
		<description><![CDATA[I've seen this issue here and there in the Q&amp;A from posts going back quite some way and assumed this had been fixed, but I just completed and uploaded an Adroid app to the market and, to my dismay, after installing the app and clicking 'open' immediately after, I am still shown a very worrying alert that an app restart is required.

(After clicking continue, I note that after a short spell on a blank screen, the app starts as normal.)

I have also seen some info that this is not a Titanium issue, but rather a Google issue. Sorry, but I just don't buy that : not every app in the Market throws up this alert after installing it. 

So.. what's the issue? How can this be resolved? Why does this still even happen?

Sorry, but my client is not going to like this at all. It makes ME look crappy. It makes the app look shoddy. I'll be lucky to get paid if all installers see this. It's unacceptable in my book.


btw: I am using Ti SDK 1.8.0 (a continuous build from November). If there any suggestions as to a fix / workaround or preferred SDK to use, then I'm all ears.]]></description>
		<content:encoded><![CDATA[<p>I've seen this issue here and there in the Q&amp;A from posts going back quite some way and assumed this had been fixed, but I just completed and uploaded an Adroid app to the market and, to my dismay, after installing the app and clicking 'open' immediately after, I am still shown a very worrying alert that an app restart is required.</p>

<p>(After clicking continue, I note that after a short spell on a blank screen, the app starts as normal.)</p>

<p>I have also seen some info that this is not a Titanium issue, but rather a Google issue. Sorry, but I just don't buy that : not every app in the Market throws up this alert after installing it.</p>

<p>So.. what's the issue? How can this be resolved? Why does this still even happen?</p>

<p>Sorry, but my client is not going to like this at all. It makes ME look crappy. It makes the app look shoddy. I'll be lucky to get paid if all installers see this. It's unacceptable in my book.</p>

<p>btw: I am using Ti SDK 1.8.0 (a continuous build from November). If there any suggestions as to a fix / workaround or preferred SDK to use, then I'm all ears.</p>
]]></content:encoded>
	</item>
	<item>
		<title>How to install modules?</title> 
		<link>http://developer.appcelerator.com/question/150486/how-to-install-modules</link>
		<pubDate>Thu, 04 Apr 2013 11:08:52 -0700</pubDate>
		<dc:creator>Taras Gromnitskiy</dc:creator> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[module]]></category> 
				<category><![CDATA[installation]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/150486/how-to-install-modules</guid>
		<description><![CDATA[Hello, guys! I have OSX 10.7.5 and I start to work with TItanium and I can compile some apps. But I don't have Titanium folder at all. I have folder: /Library/Application Support/ and there is no Titanium folder. I also have forder /User/ and there is no Application Support folder. What to do? How to install ti.could and others modules in my case. I tried to install it directly in project via menu Help-&gt;Install Titanium Module - it doesn't work - return the same error. I want to install all modules one time forever. How I can do this? Thank you, guys!]]></description>
		<content:encoded><![CDATA[<p>Hello, guys! I have OSX 10.7.5 and I start to work with TItanium and I can compile some apps. But I don't have Titanium folder at all. I have folder: /Library/Application Support/ and there is no Titanium folder. I also have forder /User/ and there is no Application Support folder. What to do? How to install ti.could and others modules in my case. I tried to install it directly in project via menu Help-&gt;Install Titanium Module - it doesn't work - return the same error. I want to install all modules one time forever. How I can do this? Thank you, guys!</p>
]]></content:encoded>
	</item>
	<item>
		<title>I have to build twice to install to iOS device</title> 
		<link>http://developer.appcelerator.com/question/150319/i-have-to-build-twice-to-install-to-ios-device</link>
		<pubDate>Mon, 01 Apr 2013 19:25:37 -0700</pubDate>
		<dc:creator>Sherlock Shellinford</dc:creator> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[device]]></category> 
				<category><![CDATA[mystery]]></category> 
				<category><![CDATA[ios]]></category> 
				<category><![CDATA[titanium studio]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/150319/i-have-to-build-twice-to-install-to-ios-device</guid>
		<description><![CDATA[Hi,

I'm working on my project using the latest version of Titanium Studio and SDKs, on Mac mini with OS X 10.8 Mountain Lion. Other apps such as Xcode and iTunes are up to date.

I noticed that I have to do &quot;Install to iOS Device&quot; twice, in order to actually transfer the newly built app to my iPhone. If I do it only once, behavior of the app on iPhone does not change, even though I have changed the code and the transfer process has been successfully completed.

I can see no difference among processes each time. It always succeeds and consistently produces the same result (no change in the first time). Does anyone have the same problem or know what is causing this?  Thank you very much.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>

<p>I'm working on my project using the latest version of Titanium Studio and SDKs, on Mac mini with OS X 10.8 Mountain Lion. Other apps such as Xcode and iTunes are up to date.</p>

<p>I noticed that I have to do &quot;Install to iOS Device&quot; twice, in order to actually transfer the newly built app to my iPhone. If I do it only once, behavior of the app on iPhone does not change, even though I have changed the code and the transfer process has been successfully completed.</p>

<p>I can see no difference among processes each time. It always succeeds and consistently produces the same result (no change in the first time). Does anyone have the same problem or know what is causing this?  Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Problem</title> 
		<link>http://developer.appcelerator.com/question/150269/problem</link>
		<pubDate>Sun, 31 Mar 2013 13:19:42 -0700</pubDate>
		<dc:creator>amani trad</dc:creator> 
				<category><![CDATA[android]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[database]]></category> 
				<category><![CDATA[error]]></category> 
				<category><![CDATA[appcelerator]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/150269/problem</guid>
		<description><![CDATA[Hi, at the opening of Titanium I had a problem, here is what is displayed to help me 
Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.ide.IDEWorkbenchActivityHelper$4 

i'm thinking you for your helping and pleaaaaaase answer me!! :(]]></description>
		<content:encoded><![CDATA[<p>Hi, at the opening of Titanium I had a problem, here is what is displayed to help me 
Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.ide.IDEWorkbenchActivityHelper$4</p>

<p>i'm thinking you for your helping and pleaaaaaase answer me!! :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>Install on Device - Android - never works</title> 
		<link>http://developer.appcelerator.com/question/19141/install-on-device---android---never-works</link>
		<pubDate>Thu, 22 Apr 2010 07:31:03 -0700</pubDate>
		<dc:creator>Jason Burfield</dc:creator> 
				<category><![CDATA[android]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[device]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/19141/install-on-device---android---never-works</guid>
		<description><![CDATA[I've spent quite a bit of time running through the posts here and I've seen a few hints of people having problems, but no real conversation on the topic.

Running Titanium 1.2.1 and attempting to get KitchenSink (or anything) to install on an Android device fails every single time.

There is no error returned. According to Titanium it works. However, nothing ever shows up on the phone.

Tried this from a Mac and from an XP machine. Same result.

Device is set to accept 'insecure' apps, etc, etc.

Can someone please point me in the right direction to solve this?

Thanks.]]></description>
		<content:encoded><![CDATA[<p>I've spent quite a bit of time running through the posts here and I've seen a few hints of people having problems, but no real conversation on the topic.</p>

<p>Running Titanium 1.2.1 and attempting to get KitchenSink (or anything) to install on an Android device fails every single time.</p>

<p>There is no error returned. According to Titanium it works. However, nothing ever shows up on the phone.</p>

<p>Tried this from a Mac and from an XP machine. Same result.</p>

<p>Device is set to accept 'insecure' apps, etc, etc.</p>

<p>Can someone please point me in the right direction to solve this?</p>

<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>How do you install a module into Titanium Studio?</title> 
		<link>http://developer.appcelerator.com/question/125954/how-do-you-install-a-module-into-titanium-studio</link>
		<pubDate>Fri, 23 Sep 2011 09:31:23 -0700</pubDate>
		<dc:creator>Steve Lombardi</dc:creator> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[module]]></category> 
				<category><![CDATA[installation]]></category> 
				<category><![CDATA[studio]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/125954/how-do-you-install-a-module-into-titanium-studio</guid>
		<description><![CDATA[I just purchased a module from the Appcelerator store.  When unzipped, there's a folder called &quot;module&quot;.

Where is this installed into Titanium Studio, so I can reference it in my projects?]]></description>
		<content:encoded><![CDATA[<p>I just purchased a module from the Appcelerator store.  When unzipped, there's a folder called &quot;module&quot;.</p>

<p>Where is this installed into Titanium Studio, so I can reference it in my projects?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Detect contacts who have installed a particular app</title> 
		<link>http://developer.appcelerator.com/question/149705/detect-contacts-who-have-installed-a-particular-app</link>
		<pubDate>Mon, 18 Mar 2013 04:51:50 -0700</pubDate>
		<dc:creator>devashree s</dc:creator> 
				<category><![CDATA[contacts]]></category> 
				<category><![CDATA[mobile]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[app]]></category> 
				<category><![CDATA[application]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/149705/detect-contacts-who-have-installed-a-particular-app</guid>
		<description><![CDATA[Hi, I would like to know whether (and how) this is possible using Titanium.. If I can detect who all from my contacts have installed a particular application, similar to WhatsApp? That is through my contacts list I can check who all have WhatsApp on their mobile phones.

Application type: mobile, Titanium SDK: 3.0.0 GA, Platforms: iOS and Android]]></description>
		<content:encoded><![CDATA[<p>Hi, I would like to know whether (and how) this is possible using Titanium.. If I can detect who all from my contacts have installed a particular application, similar to WhatsApp? That is through my contacts list I can check who all have WhatsApp on their mobile phones.</p>

<p>Application type: mobile, Titanium SDK: 3.0.0 GA, Platforms: iOS and Android</p>
]]></content:encoded>
	</item>
	<item>
		<title>Android targetSdkVersion build problem</title> 
		<link>http://developer.appcelerator.com/question/143168/android-targetsdkversion-build-problem</link>
		<pubDate>Sat, 06 Oct 2012 08:48:43 -0700</pubDate>
		<dc:creator>Mauro Vitale</dc:creator> 
				<category><![CDATA[android]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[simulator]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/143168/android-targetsdkversion-build-problem</guid>
		<description><![CDATA[Hi all,
 
I have a problem on  Android simulator when I try to launch the app after changing the tiapp.xml like this :

~~~
  	&lt;android xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;&gt;
	    &lt;tool-api-level&gt;8&lt;/tool-api-level&gt;
	    &lt;manifest android:versionCode=&quot;1&quot; android:versionName=&quot;1&quot;&gt;   
	        &lt;supports-screens android:smallScreens=&quot;true&quot; android:normalScreens=&quot;true&quot; 
	                          android:largeScreens=&quot;true&quot; android:anyDensity=&quot;false&quot; /&gt;
	        &lt;uses-sdk android:minSdkVersion=&quot;8&quot; android:targetSdkVersion=&quot;16&quot; 
	                  android:installLocation=&quot;preferExternal&quot;/&gt;
	    &lt;/manifest&gt;
	&lt;/android&gt;
~~~

the application seems frozen and I get this message when I try to build : 

~~~
[ERROR][TiApplication( 1002)] (main) [11,1167] Sending event: exception on thread: main msg:java.lang.RuntimeException: Unable to create application com.infotelsrl.todo.TodoApplication: java.lang.NullPointerException; Titanium 2.1.2,2012/08/24 14:46,ed7f777
[ERROR][TiApplication( 1002)] java.lang.RuntimeException: Unable to create application com.infotelsrl.todo.TodoApplication: java.lang.NullPointerException
[ERROR][TiApplication( 1002)] 	at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4154)
[ERROR][TiApplication( 1002)] 	at android.app.ActivityThread.access$1300(ActivityThread.java:130)
[ERROR][TiApplication( 1002)] 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1255)
[ERROR][TiApplication( 1002)] 	at android.os.Handler.dispatchMessage(Handler.java:99)
[ERROR][TiApplication( 1002)] 	at android.os.Looper.loop(Looper.java:137)
[ERROR][TiApplication( 1002)] 	at android.app.ActivityThread.main(ActivityThread.java:4745)
[ERROR][TiApplication( 1002)] 	at java.lang.reflect.Method.invokeNative(Native Method)
[ERROR][TiApplication( 1002)] 	at java.lang.reflect.Method.invoke(Method.java:511)
[ERROR][TiApplication( 1002)] 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
[ERROR][TiApplication( 1002)] 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
[ERROR][TiApplication( 1002)] 	at dalvik.system.NativeStart.main(Native Method)
[ERROR][TiApplication( 1002)] Caused by: java.lang.NullPointerException
[ERROR][TiApplication( 1002)] 	at org.appcelerator.kroll.common.TiFastDev.showToast(TiFastDev.java:157)
[ERROR][TiApplication( 1002)] 	at org.appcelerator.kroll.common.TiFastDev.showDisabledWarning(TiFastDev.java:164)
[ERROR][TiApplication( 1002)] 	at org.appcelerator.kroll.common.TiFastDev.connect(TiFastDev.java:147)
[ERROR][TiApplication( 1002)] 	at org.appcelerator.kroll.common.TiFastDev.readDeployData(TiFastDev.java:119)
[ERROR][TiApplication( 1002)] 	at org.appcelerator.kroll.common.TiFastDev.&lt;init&gt;(TiFastDev.java:99)
[ERROR][TiApplication( 1002)] 	at org.appcelerator.kroll.common.TiFastDev.initFastDev(TiFastDev.java:73)
[ERROR][TiApplication( 1002)] 	at org.appcelerator.titanium.TiApplication.postAppInfo(TiApplication.java:374)
[ERROR][TiApplication( 1002)] 	at com.infotelsrl.todo.TodoApplication.onCreate(TodoApplication.java:34)
[ERROR][TiApplication( 1002)] 	at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:999)
[ERROR][TiApplication( 1002)] 	at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4151)
[ERROR][TiApplication( 1002)] 	... 10 more
~~~

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi all,</p>

<p>I have a problem on  Android simulator when I try to launch the app after changing the tiapp.xml like this :
<pre class="javascript codeblock"><span class="sy0">&lt;</span>android xmlns<span class="sy0">:</span>android<span class="sy0">=</span><span class="st0">&quot;http://schemas.android.com/apk/res/android&quot;</span><span class="sy0">&gt;</span>
        <span class="sy0">&lt;</span>tool<span class="sy0">-</span>api<span class="sy0">-</span>level<span class="sy0">&gt;</span><span class="nu0">8</span><span class="sy0">&lt;/</span>tool<span class="sy0">-</span>api<span class="sy0">-</span>level<span class="sy0">&gt;</span>
        <span class="sy0">&lt;</span>manifest android<span class="sy0">:</span>versionCode<span class="sy0">=</span><span class="st0">&quot;1&quot;</span> android<span class="sy0">:</span>versionName<span class="sy0">=</span><span class="st0">&quot;1&quot;</span><span class="sy0">&gt;</span>   
            <span class="sy0">&lt;</span>supports<span class="sy0">-</span>screens android<span class="sy0">:</span>smallScreens<span class="sy0">=</span><span class="st0">&quot;true&quot;</span> android<span class="sy0">:</span>normalScreens<span class="sy0">=</span><span class="st0">&quot;true&quot;</span> 
                              android<span class="sy0">:</span>largeScreens<span class="sy0">=</span><span class="st0">&quot;true&quot;</span> android<span class="sy0">:</span>anyDensity<span class="sy0">=</span><span class="st0">&quot;false&quot;</span> <span class="sy0">/&gt;</span>
            <span class="sy0">&lt;</span>uses<span class="sy0">-</span>sdk android<span class="sy0">:</span>minSdkVersion<span class="sy0">=</span><span class="st0">&quot;8&quot;</span> android<span class="sy0">:</span>targetSdkVersion<span class="sy0">=</span><span class="st0">&quot;16&quot;</span> 
                      android<span class="sy0">:</span>installLocation<span class="sy0">=</span><span class="st0">&quot;preferExternal&quot;</span><span class="sy0">/&gt;</span>
        <span class="sy0">&lt;/</span>manifest<span class="sy0">&gt;</span>
    <span class="sy0">&lt;/</span>android<span class="sy0">&gt;</span></pre>
the application seems frozen and I get this message when I try to build : 
<pre class="javascript codeblock"><span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span> <span class="br0">&#40;</span>main<span class="br0">&#41;</span> <span class="br0">&#91;</span><span class="nu0">11</span><span class="sy0">,</span><span class="nu0">1167</span><span class="br0">&#93;</span> Sending event<span class="sy0">:</span> exception on thread<span class="sy0">:</span> main msg<span class="sy0">:</span>java.<span class="me1">lang</span>.<span class="me1">RuntimeException</span><span class="sy0">:</span> Unable to create application com.<span class="me1">infotelsrl</span>.<span class="me1">todo</span>.<span class="me1">TodoApplication</span><span class="sy0">:</span> java.<span class="me1">lang</span>.<span class="me1">NullPointerException</span><span class="sy0">;</span> Titanium 2.1.2<span class="sy0">,</span><span class="nu0">2012</span><span class="sy0">/</span>08<span class="sy0">/</span><span class="nu0">24</span> <span class="nu0">14</span><span class="sy0">:</span><span class="nu0">46</span><span class="sy0">,</span>ed7f777
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span> java.<span class="me1">lang</span>.<span class="me1">RuntimeException</span><span class="sy0">:</span> Unable to create application com.<span class="me1">infotelsrl</span>.<span class="me1">todo</span>.<span class="me1">TodoApplication</span><span class="sy0">:</span> java.<span class="me1">lang</span>.<span class="me1">NullPointerException</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at android.<span class="me1">app</span>.<span class="me1">ActivityThread</span>.<span class="me1">handleBindApplication</span><span class="br0">&#40;</span>ActivityThread.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">4154</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at android.<span class="me1">app</span>.<span class="me1">ActivityThread</span>.<span class="me1">access</span>$<span class="nu0">1300</span><span class="br0">&#40;</span>ActivityThread.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">130</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at android.<span class="me1">app</span>.<span class="me1">ActivityThread</span>$H.<span class="me1">handleMessage</span><span class="br0">&#40;</span>ActivityThread.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">1255</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at android.<span class="me1">os</span>.<span class="me1">Handler</span>.<span class="me1">dispatchMessage</span><span class="br0">&#40;</span>Handler.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">99</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at android.<span class="me1">os</span>.<span class="me1">Looper</span>.<span class="me1">loop</span><span class="br0">&#40;</span>Looper.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">137</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at android.<span class="me1">app</span>.<span class="me1">ActivityThread</span>.<span class="me1">main</span><span class="br0">&#40;</span>ActivityThread.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">4745</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at java.<span class="me1">lang</span>.<span class="me1">reflect</span>.<span class="me1">Method</span>.<span class="me1">invokeNative</span><span class="br0">&#40;</span>Native Method<span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at java.<span class="me1">lang</span>.<span class="me1">reflect</span>.<span class="me1">Method</span>.<span class="me1">invoke</span><span class="br0">&#40;</span>Method.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">511</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at com.<span class="me1">android</span>.<span class="me1">internal</span>.<span class="me1">os</span>.<span class="me1">ZygoteInit</span>$MethodAndArgsCaller.<span class="me1">run</span><span class="br0">&#40;</span>ZygoteInit.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">786</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at com.<span class="me1">android</span>.<span class="me1">internal</span>.<span class="me1">os</span>.<span class="me1">ZygoteInit</span>.<span class="me1">main</span><span class="br0">&#40;</span>ZygoteInit.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">553</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at dalvik.<span class="me1">system</span>.<span class="me1">NativeStart</span>.<span class="me1">main</span><span class="br0">&#40;</span>Native Method<span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span> Caused by<span class="sy0">:</span> java.<span class="me1">lang</span>.<span class="me1">NullPointerException</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at org.<span class="me1">appcelerator</span>.<span class="me1">kroll</span>.<span class="me1">common</span>.<span class="me1">TiFastDev</span>.<span class="me1">showToast</span><span class="br0">&#40;</span>TiFastDev.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">157</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at org.<span class="me1">appcelerator</span>.<span class="me1">kroll</span>.<span class="me1">common</span>.<span class="me1">TiFastDev</span>.<span class="me1">showDisabledWarning</span><span class="br0">&#40;</span>TiFastDev.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">164</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at org.<span class="me1">appcelerator</span>.<span class="me1">kroll</span>.<span class="me1">common</span>.<span class="me1">TiFastDev</span>.<span class="me1">connect</span><span class="br0">&#40;</span>TiFastDev.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">147</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at org.<span class="me1">appcelerator</span>.<span class="me1">kroll</span>.<span class="me1">common</span>.<span class="me1">TiFastDev</span>.<span class="me1">readDeployData</span><span class="br0">&#40;</span>TiFastDev.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">119</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at org.<span class="me1">appcelerator</span>.<span class="me1">kroll</span>.<span class="me1">common</span>.<span class="me1">TiFastDev</span>.<span class="sy0">&lt;</span>init<span class="sy0">&gt;</span><span class="br0">&#40;</span>TiFastDev.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">99</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at org.<span class="me1">appcelerator</span>.<span class="me1">kroll</span>.<span class="me1">common</span>.<span class="me1">TiFastDev</span>.<span class="me1">initFastDev</span><span class="br0">&#40;</span>TiFastDev.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">73</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at org.<span class="me1">appcelerator</span>.<span class="me1">titanium</span>.<span class="me1">TiApplication</span>.<span class="me1">postAppInfo</span><span class="br0">&#40;</span>TiApplication.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">374</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at com.<span class="me1">infotelsrl</span>.<span class="me1">todo</span>.<span class="me1">TodoApplication</span>.<span class="me1">onCreate</span><span class="br0">&#40;</span>TodoApplication.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">34</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at android.<span class="me1">app</span>.<span class="me1">Instrumentation</span>.<span class="me1">callApplicationOnCreate</span><span class="br0">&#40;</span>Instrumentation.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">999</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   at android.<span class="me1">app</span>.<span class="me1">ActivityThread</span>.<span class="me1">handleBindApplication</span><span class="br0">&#40;</span>ActivityThread.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">4151</span><span class="br0">&#41;</span>
<span class="br0">&#91;</span>ERROR<span class="br0">&#93;</span><span class="br0">&#91;</span>TiApplication<span class="br0">&#40;</span> <span class="nu0">1002</span><span class="br0">&#41;</span><span class="br0">&#93;</span>   ... <span class="nu0">10</span> more</pre>
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>&quot;Titanium mobile project&quot; doesnt appear in the menu</title> 
		<link>http://developer.appcelerator.com/question/147970/titanium-mobile-project-doesnt-appear-in-the-menu</link>
		<pubDate>Thu, 07 Feb 2013 00:35:59 -0800</pubDate>
		<dc:creator>Daniel Polo</dc:creator> 
				<category><![CDATA[android]]></category> 
				<category><![CDATA[mac]]></category> 
				<category><![CDATA[install]]></category> 
				<category><![CDATA[ios]]></category> 
				<category><![CDATA[titanium studio]]></category> 
				<guid isPermaLink="true">http://developer.appcelerator.com/question/147970/titanium-mobile-project-doesnt-appear-in-the-menu</guid>
		<description><![CDATA[Hi,

I've just installed Titanium on MacOS X, and I added the Android SDK and iOS SDK but the &quot;Titanium Mobile Project&quot; doesnt appear in the menu,

Whats wrong?]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>

<p>I've just installed Titanium on MacOS X, and I added the Android SDK and iOS SDK but the &quot;Titanium Mobile Project&quot; doesnt appear in the menu,</p>

<p>Whats wrong?</p>
]]></content:encoded>
	</item>
</channel>
</rss>