forked from mysms/mysms-android-theme-system
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
26 lines (24 loc) · 989 Bytes
/
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.pansy.droid.mysms.theme.system"
android:versionCode="2"
android:versionName="1.1">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity
android:name="com.mysms.android.sms.theme.ThemeActivity"
android:label="@string/theme_name"
android:icon="@drawable/icon"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.INFO" />
</intent-filter>
<!-- this intent is required to get listed as theme package in mysms app -->
<intent-filter>
<action android:name="com.mysms.android.sms.intent.action.THEME" />
</intent-filter>
</activity>
</application>
</manifest>