diff -r 000000000000 -r 6474c204b198 embedding/android/geckoview_example/GeckoViewExample.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/embedding/android/geckoview_example/GeckoViewExample.java Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,14 @@ +package org.mozilla.geckoviewexample; + +import android.app.Activity; +import android.os.Bundle; +import android.util.AttributeSet; + +public class GeckoViewExample extends Activity { + /** Called when the activity is first created. */ + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.main); + } +}