summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
commit979004c651c1dc2327c4d74688cbaa5cbb9f08e1 (patch)
treededa1d8f6ca8b6da205c66a3dc0e77afa53535df /AndroidManifest.xml
downloadandroid_packages_apps_ExactCalculator-979004c651c1dc2327c4d74688cbaa5cbb9f08e1.tar.gz
android_packages_apps_ExactCalculator-979004c651c1dc2327c4d74688cbaa5cbb9f08e1.tar.bz2
android_packages_apps_ExactCalculator-979004c651c1dc2327c4d74688cbaa5cbb9f08e1.zip
Initial Contribution
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..ce9063f
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.calculator2">
+ <application android:label="@string/app_name" android:icon="@drawable/icon">
+ <activity android:name="Calculator"
+ android:theme="@android:style/Theme.Black">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>