Skip to content

Instantly share code, notes, and snippets.

@mdellavo
Last active August 29, 2015 14:04
Show Gist options
  • Save mdellavo/24542085748de8047f83 to your computer and use it in GitHub Desktop.
Save mdellavo/24542085748de8047f83 to your computer and use it in GitHub Desktop.
var Log = require("log").Log;
var TAG = __file__.getName();
Log.d(TAG, "initializing hello world");
exports.name = 'Hello';
exports.description = 'Hello World';
exports.icon = 'http://example.com/icon.png'
exports.main = function(context) {
Log.d(TAG, "hello world");
android.widget.Toast.makeText(context, "Hello World", android.widget.Toast.LENGTH_LONG).show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment