© 2011 steveostudios

Replacing Titanium Mobile Local Databases

Posted on October 25, 2011 by in Code, Javascript | 4 Comments
databases

I was trying to update a database in a Titanium Mobile app that I am working on and realized that when the database gets installed, the SQL file actually gets copied out of the Resources directory and moved to another folder. This is because the application doesn’t have right to write over anything in the Resources directory. This is [...]

Continue Reading

Retreiving Java data into Titanium Desktop

Posted on September 15, 2011 by in Java, Javascript, Quick Tips | No Comments

Yesterday I posted how to get Titanium to open a Java application and run it. This may be fun, but pretty useless unless Titanium can retrieve data from that application, right? 1 2 3 4 5 6 7 8 var separator = Titanium.Filesystem.getSeparator(); var jar = Titanium.App.home +separator+ "Resources" +separator+ "java/javaProcess.jar"; [...]

Continue Reading