forked from alicia-peters-dev/Radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
83 lines (80 loc) · 4.07 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="14"
android:versionName="3.0" package="com.statichiss">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-sdk
android:minSdkVersion="11"
android:maxSdkVersion="17"
android:targetSdkVersion="17"/>
<application
android:name=".recordio.RadioApplication"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:allowBackup="true">
<activity android:name=".recordio.RadioActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden|keyboard"
android:windowSoftInputMode="stateUnchanged">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".recordio.ConfirmDetailsActivity"
android:label="@string/app_name_confirm_details_activity"
android:configChanges="orientation|keyboardHidden|keyboard"
android:screenOrientation="portrait"/>
<activity android:name=".recordio.ListScheduledRecordingsActivity"
android:label="@string/app_name_list_scheduled_recordings"
android:configChanges="orientation|keyboardHidden|keyboard"
android:screenOrientation="portrait"/>
<activity android:name=".recordio.AddNewScheduledRecordingActivity"
android:label="@string/app_name_add_new_scheduled_recordings"
android:configChanges="orientation|keyboardHidden|keyboard"
android:screenOrientation="portrait"/>
<activity android:name=".recordio.RecordingsActivity"
android:label="@string/app_name_recordings"
android:configChanges="orientation|keyboardHidden|keyboard"
android:screenOrientation="portrait"/>
<activity android:name=".recordio.RecordioBaseActivity"/>
<receiver android:name=".recordio.recording.RecordingBroadcastReceiver"/>
<receiver android:name=".recordio.RebootBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<receiver android:name=".recordio.CallReceiver" android:label="CallReceiver">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE"/>
</intent-filter>
</receiver>
<receiver android:name=".recordio.RemoteControlReceiver">
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON"/>
</intent-filter>
</receiver>
<service
android:name=".recordio.recording.RecorderService"
android:exported="false">
<intent-filter>
<action android:name="com.statichiss.recordio.recording.RecorderService"/>
</intent-filter>
</service>
<service
android:name=".recordio.PlayerService"
android:label="PlayerService"
android:exported="false">
<intent-filter>
<action android:name="com.statichiss.recordio.PlayerService"/>
</intent-filter>
</service>
</application>
</manifest>