auto import from //depot/cupcake/@135843
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="PACKAGE"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0">
|
||||
<application android:icon="@drawable/icon" android:label="APPLICATION_NAME">
|
||||
ACTIVITIES
|
||||
</application>
|
||||
USES-SDK
|
||||
</manifest>
|
||||
@@ -1,7 +0,0 @@
|
||||
<activity android:name=".ACTIVITY_NAME"
|
||||
android:label="APPLICATION_NAME">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
INTENT_FILTERS
|
||||
</intent-filter>
|
||||
</activity>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,13 +0,0 @@
|
||||
package PACKAGE;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
public class ACTIVITY_NAME extends Activity {
|
||||
/** Called when the activity is first created. */
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.main);
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
@@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
>
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/hello"
|
||||
/>
|
||||
</LinearLayout>
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
<category android:name="android.intent.category.PREFERENCE" />
|
||||
@@ -1 +0,0 @@
|
||||
<string name="STRING_NAME">STRING_CONTENT</string>
|
||||
@@ -1,5 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
STRINGS
|
||||
</resources>
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
<uses-sdk android:minSdkVersion="MIN_SDK_VERSION" />
|
||||
Reference in New Issue
Block a user