aboutsummaryrefslogtreecommitdiff
path: root/testapps/testProjectTest/lib/src/com/android/tests/testprojecttest/lib/LibActivity.java
blob: 7d7f6079e2365e750e6012fdca6f0f57fbd696dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.android.tests.testprojecttest.lib;

import android.app.Activity;
import android.os.Bundle;

public class LibActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}