AndroidManifest.xml
author Da Risk <darisk972@gmail.com>
Tue, 17 Mar 2009 22:02:07 +0100
changeset 16 da30cff7f9ce
parent 0 ea84f930b04a
child 17 afd3a080d318
permissions -rw-r--r--
Merge avec la branche UI

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.beem.project.beem"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:label="@string/app_name">
        <activity android:name=".Beem"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    <service android:name="BeemService" android:enabled="true" android:permission="android.permission.INTERNET" android:label="Beem Service"></service>
</application>
</manifest>