aboutsummaryrefslogtreecommitdiff
path: root/testapps/gridlayoutTest/app/AndroidManifest.xml
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2012-03-01 17:00:54 -0800
committerXavier Ducrohet <xav@android.com>2012-03-06 17:01:12 -0800
commiteb745bcd74491f546efa9e64de240398dd48a21e (patch)
tree2452691907d3f45d55de94aacbaad66178f6bd03 /testapps/gridlayoutTest/app/AndroidManifest.xml
parent8fca561846794680e582b2c1416ebda030a90f1a (diff)
downloadsdk-eb745bcd74491f546efa9e64de240398dd48a21e.tar.gz
Add a test project using a support library with gridlayout.
Change-Id: I1dbf1729e8af03e5d597e6372b56db0f47f39890
Diffstat (limited to 'testapps/gridlayoutTest/app/AndroidManifest.xml')
-rw-r--r--testapps/gridlayoutTest/app/AndroidManifest.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/testapps/gridlayoutTest/app/AndroidManifest.xml b/testapps/gridlayoutTest/app/AndroidManifest.xml
new file mode 100644
index 000000000..9c95ca2e6
--- /dev/null
+++ b/testapps/gridlayoutTest/app/AndroidManifest.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.test.gridlayout"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
+ <activity android:name="Main"
+ android:label="@string/app_name">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>