• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.tests.javaprojecttest.lib1;
2 
3 import android.app.Activity;
4 import android.os.Bundle;
5 
6 import com.android.tests.javaprojecttest.lib2.Lib2;
7 
8 public class Main extends Activity
9 {
10     /** Called when the activity is first created. */
11     @Override
onCreate(Bundle savedInstanceState)12     public void onCreate(Bundle savedInstanceState)
13     {
14         super.onCreate(savedInstanceState);
15         setContentView(R.layout.main);
16 
17         //Access some class from Lib2 to make sure we can access them.
18         String foo = Lib2.getContent();
19     }
20 }
21