-
Notifications
You must be signed in to change notification settings - Fork 2
/
AndroidManifest.xml
executable file
·30 lines (28 loc) · 1.42 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="tv.studer.smssync"
android:versionName="1.1.1"
android:versionCode="11100"
android:description="@string/app_description">
<application android:icon="@drawable/ic_launcher_smssync2" android:label="@string/app_name" android:description="@string/app_description">
<activity android:name=".SmsSync" android:label="@string/app_name" android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".SmsSyncService" android:exported="false"></service>
<receiver android:name=".SmsBroadcastReceiver">
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
</intent-filter>
</receiver>
</application>
<uses-permission android:name="android.permission.READ_SMS"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.RECEIVE_SMS"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-sdk android:minSdkVersion="3"></uses-sdk>
<supports-screens android:smallScreens="true"></supports-screens>
</manifest>