This repository has been archived by the owner on Jul 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
49 lines (40 loc) · 1.81 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="in.tsuyabu.umezo.android.directron"
android:versionCode="1011"
android:versionName="PROTOTYPE3"
android:minSdkVersion="7"
>
<uses-sdk android:minSdkVersion="7"></uses-sdk>
<application
android:debuggable="false"
android:label="@string/AppName"
android:icon="@drawable/directron_icon"
android:theme="@android:style/Theme.NoTitleBar">
<activity android:name="Main" android:configChanges="keyboard|keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!--
<activity android:name=".app.PlayerActivity" android:configChanges="keyboard|keyboardHidden|orientation"></activity>
<activity android:name=".app.PlaylistActivity" android:configChanges="keyboard|keyboardHidden|orientation"></activity>
-->
<service android:label="@string/AppName" android:name=".app.DirectronMusicService">
<intent-filter>
<action android:name="in.tsuyabu.umezo.android.directron.app.DirectronMusicService.ACTION_PLAY"></action>
</intent-filter>
</service>
<!--
<receiver android:name=".appwidget.PlayerWidget" android:label="PlayerWidget">
<meta-data android:name="android.appwidget.provider" android:resource="@xml/playerwidget"></meta-data>
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"></action>
<action android:name="PAUSE"></action>
</intent-filter>
</receiver>
-->
</application>
</manifest>