Skip to content

Instantly share code, notes, and snippets.

@stevenday
Created June 26, 2012 13:15
Show Gist options
  • Save stevenday/2995731 to your computer and use it in GitHub Desktop.
Save stevenday/2995731 to your computer and use it in GitHub Desktop.
package org.something.yourname;
import android.os.Bundle;
import org.apache.cordova.*;
public class HelloCordovaActivity extends DroidGap {
/** Called when the activity is first created **/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file://android_asset/www/index.html");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment