benCoding.Android.Tools
benCoding.Android.Tools copied to clipboard
A collection of utilities designed to make working with Titanium on Android alittle easier.
A couple of issues `TiApplication.getInstance().beforeForcedRestart()` is deprecated in Ti SDK 8.0.x so `platformTools.restartApp()` is broken, have replaced most of `restartApp` with a new method in v8 called `TiApplication.getInstance().softRestart()` compilation now...
Hi! I've tried the BootReceiver function included on Android.Tools but it doesn't work as I expected. There is an option in the meta-data parameters to set the restart to background...
It seems that the last version is not currently compatible. Any chance we could get a compatible version? Thanks
Is bug 2373 (the additional XML elements in your readme) still a relevant bug? Do I still need to include these?
Hey. This is not really an issue but more of a question. I'm developing a Titanium module and am trying to make it with 7.0.0.GA but backwards-compatible to 6.0.0.GA like...
Hey, how could i get just the notification service running after restart of android? i cant get the service example to work regards goran
Hi Ben, I try to build an own module for implementing of ``` javascript Ti.App.addEventListener("paused",function(){}); ``` This is my code: ``` java mTimer.scheduleAtFixedRate(new TimerTask() { @Override public void run() {...
Hi Ben, I just tried out your module to get my app rebooted when I reboot my device, at first it looked good, except the sendToBack property, but the real...
Now i wont to know how to fireEvent that lunch when i click on the notification that shows after reboot the device but i can't know how could u help...
Made service that sends the app to the background use a wakeful intent service. This way, it can be sent to the background even if the phone is locked. Updated...