summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/store-android/AndroidManifest.xml
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2008-12-17 19:31:01 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2008-12-17 19:31:01 +0000
commit31cc3f73bea03fb0d8403ed7b5c7adda6c7c9c9a (patch)
treeea168b22586fd30e092554166b2c02654b59eed4 /branches/sca-java-1.x/samples/store-android/AndroidManifest.xml
parentf4a9b26a985ae42074ce692e1ed60341061186e9 (diff)
[Work in progress] An Android store app consuming SCA services
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@727484 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/samples/store-android/AndroidManifest.xml')
-rw-r--r--branches/sca-java-1.x/samples/store-android/AndroidManifest.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/samples/store-android/AndroidManifest.xml b/branches/sca-java-1.x/samples/store-android/AndroidManifest.xml
new file mode 100644
index 0000000000..4a26dd27c6
--- /dev/null
+++ b/branches/sca-java-1.x/samples/store-android/AndroidManifest.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="store.android"
+ android:versionCode="1"
+ android:versionName="1.0.0">
+ <application android:icon="@drawable/icon" android:label="@string/app_name">
+ <activity android:name=".catalog"
+ 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>
+
+<uses-permission android:name="android.permission.INTERNET"></uses-permission>
+
+</manifest> \ No newline at end of file