Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / platforms / android-25 / templates / java_file.template
blob19714a8e3784b3e3becf1a5994034ce71dcebeb6
1 package PACKAGE;
3 import android.app.Activity;
4 import android.os.Bundle;
6 public class ACTIVITY_CLASS_NAME extends Activity
8     /** Called when the activity is first created. */
9     @Override
10     public void onCreate(Bundle savedInstanceState)
11     {
12         super.onCreate(savedInstanceState);
13         setContentView(R.layout.main);
14     }