Skip to content

Instantly share code, notes, and snippets.

@Red-Folder
Created September 24, 2012 20:41
Show Gist options
  • Save Red-Folder/3778237 to your computer and use it in GitHub Desktop.
Save Red-Folder/3778237 to your computer and use it in GitHub Desktop.
Phonegap Service Tutorial - Part2 - twitterService.js
// ///////////////////
(function(){
// ///////////////////
// get local ref to global PhoneGap/Cordova/cordova object for exec function
var cordovaRef = window.PhoneGap || window.Cordova || window.cordova; // old to new fallbacks
cordovaRef.addConstructor(function() {
cordovaRef.addPlugin("twitterService", new BackgroundService('com.red_folder.sample.TwitterService'));
});
// ///////////////////
})();
// ///////////////////
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment