mirror of
https://github.com/moparisthebest/PagePlusBalance
synced 2024-11-11 11:55:08 -05:00
47 lines
2.2 KiB
XML
Executable File
47 lines
2.2 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ PagePlusBalance retrieves your balance from PagePlusCellular.com, currently for android phones.
|
|
~ Copyright (C) 2013 Travis Burtrum (moparisthebest)
|
|
~
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
~ it under the terms of the GNU Affero General Public License as published by
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
~ (at your option) any later version.
|
|
~
|
|
~ This program is distributed in the hope that it will be useful,
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
~ GNU Affero General Public License for more details.
|
|
~
|
|
~ You should have received a copy of the GNU Affero General Public License
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.moparisthebest.pageplus"
|
|
android:versionName="0.5.2" android:versionCode="8">
|
|
<application android:label="@string/app_name" android:icon="@drawable/icon">
|
|
<activity android:name=".Main"
|
|
android:label="@string/app_name"
|
|
android:configChanges="orientation"
|
|
android:launchMode="singleTask"
|
|
>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<receiver android:name=".SMSReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
<uses-sdk android:minSdkVersion="7"/>
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
|
|
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
|
<uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
|
|
</manifest> |