Misc. Updates.
This commit is contained in:
parent
92ed7cd5f4
commit
a0d9ea235f
10 changed files with 297 additions and 174 deletions
|
@ -1,16 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="net.thauvin.erik.android.googsms" android:installLocation="auto"
|
||||
android:versionName="0.2" android:versionCode="2">
|
||||
<uses-permission android:name="android.permission.SEND_SMS" />
|
||||
<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>
|
||||
<uses-sdk android:minSdkVersion="2"></uses-sdk>
|
||||
</manifest>
|
||||
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>
|
Loading…
Add table
Add a link
Reference in a new issue