29 lines
No EOL
923 B
XML
29 lines
No EOL
923 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:installLocation="auto"
|
|
package="net.thauvin.erik.android.googsms"
|
|
android:versionCode="3"
|
|
android:versionName="0.3" >
|
|
|
|
<uses-permission android:name="android.permission.SEND_SMS" />
|
|
|
|
<uses-sdk android:minSdkVersion="2" />
|
|
|
|
<application
|
|
android:icon="@drawable/icon"
|
|
android:label="@string/app_name" >
|
|
<activity
|
|
android:name=".GoogSMS"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".PrefsScreen"
|
|
android:label="@string/app_name" />
|
|
</application>
|
|
|
|
</manifest> |