blob: 1930c7af827114dbc4ebef6b333e9b789a2b6ed5 [file] [log] [blame]
package com.android.tests.flavorlib.app;
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
App.handleTextView(this);
LibWrapper.handleTextView(this);
}
}