Working on the API, doing a 5 PM build to try to get this rolling along

- Got Vibrate to work
- 411 works out of the box
This commit is contained in:
unknown
2009-03-30 17:06:27 -07:00
parent 0514195d94
commit c78a0b876a
7 changed files with 815 additions and 495 deletions
+4 -2
View File
@@ -91,8 +91,10 @@ public class DroidGap extends Activity {
{
// The PhoneGap class handles the Notification and Android Specific crap
PhoneGap gap = new PhoneGap(this, mHandler, appView);
appView.addJavascriptInterface(gap, "Droid");
GeoBroker geo = new GeoBroker(appView, this);
// This creates the new javascript interfaces for PhoneGap
appView.addJavascriptInterface(gap, "Device");
appView.addJavascriptInterface(geo, "Geo");
}
/**