Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AndroidManifest.xml « main « src - github.com/Morlunk/Jumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7af6803b339e25998b54d89179e97d618d43d52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.morlunk.jumble"
    android:versionCode="1"
    android:versionName="1.0">

    <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="18" />
    <uses-permission android:name="android.permission.INTERNET" />

    <application android:allowBackup="true">
        <service android:name=".JumbleService"
                 android:exported="true">
            <intent-filter>
                <action android:name="com.morlunk.jumble.ACTION_CONNECT"/>
                <action android:name="com.morlunk.jumble.ACTION_DISCONNECT"/>
            </intent-filter>
        </service>
    </application>

</manifest>