aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.adt/templates
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.adt/templates')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/AndroidManifest.template12
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/activity.template7
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_hdpi.pngbin9397 -> 0 bytes
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_ldpi.pngbin2729 -> 0 bytes
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_mdpi.pngbin5237 -> 0 bytes
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_xhdpi.pngbin14383 -> 0 bytes
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/java_file.template13
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/launcher_intent_filter.template1
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/layout.template15
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/preference_intent_filter.template1
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/string.template1
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/strings.template5
-rwxr-xr-xeclipse/plugins/com.android.ide.eclipse.adt/templates/test_instrumentation.template1
-rwxr-xr-xeclipse/plugins/com.android.ide.eclipse.adt/templates/test_uses-library.template1
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/templates/uses-sdk.template1
15 files changed, 0 insertions, 58 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/AndroidManifest.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/AndroidManifest.template
deleted file mode 100644
index e8975a06c..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/AndroidManifest.template
+++ /dev/null
@@ -1,12 +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">
-USES-SDK
-TEST-INSTRUMENTATION
- <application android:icon="@drawable/ic_launcher" android:label="APPLICATION_NAME">
-ACTIVITIES
-TEST-USES-LIBRARY
- </application>
-</manifest>
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/activity.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/activity.template
deleted file mode 100644
index ee17fb82a..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/activity.template
+++ /dev/null
@@ -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>
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_hdpi.png b/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_hdpi.png
deleted file mode 100644
index 96a442e5b..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_hdpi.png
+++ /dev/null
Binary files differ
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_ldpi.png b/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_ldpi.png
deleted file mode 100644
index 99238729d..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_ldpi.png
+++ /dev/null
Binary files differ
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_mdpi.png b/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_mdpi.png
deleted file mode 100644
index 359047dfa..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_mdpi.png
+++ /dev/null
Binary files differ
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_xhdpi.png b/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_xhdpi.png
deleted file mode 100644
index 71c6d760f..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/ic_launcher_xhdpi.png
+++ /dev/null
Binary files differ
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/java_file.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/java_file.template
deleted file mode 100644
index e40e77ef5..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/java_file.template
+++ /dev/null
@@ -1,13 +0,0 @@
-package PACKAGE;
-IMPORT_RESOURCE_CLASS
-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);
- }
-}
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/launcher_intent_filter.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/launcher_intent_filter.template
deleted file mode 100644
index f5681be1e..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/launcher_intent_filter.template
+++ /dev/null
@@ -1 +0,0 @@
- <category android:name="android.intent.category.LAUNCHER" /> \ No newline at end of file
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/layout.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/layout.template
deleted file mode 100644
index 398b79a97..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/layout.template
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- tools:context=".ACTIVITY_NAME"
- >
-<TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- />
-</LinearLayout>
-
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/preference_intent_filter.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/preference_intent_filter.template
deleted file mode 100644
index 609bb2cf0..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/preference_intent_filter.template
+++ /dev/null
@@ -1 +0,0 @@
- <category android:name="android.intent.category.PREFERENCE" /> \ No newline at end of file
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/string.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/string.template
deleted file mode 100644
index 3a6e4b2b5..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/string.template
+++ /dev/null
@@ -1 +0,0 @@
- <string name="STRING_NAME">STRING_CONTENT</string> \ No newline at end of file
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/strings.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/strings.template
deleted file mode 100644
index b980acea4..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/strings.template
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-STRINGS
-</resources>
-
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/test_instrumentation.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/test_instrumentation.template
deleted file mode 100755
index c282fbcfe..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/test_instrumentation.template
+++ /dev/null
@@ -1 +0,0 @@
- <instrumentation android:targetPackage="TEST_TARGET_PCKG" android:name="android.test.InstrumentationTestRunner" />
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/test_uses-library.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/test_uses-library.template
deleted file mode 100755
index 28ae7a431..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/test_uses-library.template
+++ /dev/null
@@ -1 +0,0 @@
- <uses-library android:name="android.test.runner" />
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/templates/uses-sdk.template b/eclipse/plugins/com.android.ide.eclipse.adt/templates/uses-sdk.template
deleted file mode 100644
index 8adae717a..000000000
--- a/eclipse/plugins/com.android.ide.eclipse.adt/templates/uses-sdk.template
+++ /dev/null
@@ -1 +0,0 @@
- <uses-sdk android:minSdkVersion="MIN_SDK_VERSION" />