forked from GiorgioRegni/Binaural-Beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
39 lines (32 loc) · 1.54 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ihunda.android.binauralbeat"
android:versionCode="39"
android:versionName="2.0.3"
android:installLocation="auto">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar" android:allowBackup="true">
<activity android:name=".BBeat"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:launchMode="singleTop"
android:alwaysRetainTaskState="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Comments"
android:label="@string/comments_title" >
</activity>
<receiver android:name="com.ihunda.android.binauralbeat.IncomingCallReceiver" >
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
</application>
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<supports-screens android:smallScreens="false"/>
<uses-sdk android:minSdkVersion="8"></uses-sdk>
</manifest>