Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mjsintegrated.rsamessenger">
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="com.android.vending.BILLING" />
<application
android:allowBackup="true"
android:name="com.mjsintegrated.rsamessenger.MyApplication"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.mjsintegrated.rsamessenger.PurchaseApp"
android:label="Purchase"
android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
<activity android:name="com.mjsintegrated.rsamessenger.Help"
android:label="Help"
android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
<activity android:name="com.mjsintegrated.rsamessenger.Contacts"
android:label="Contacts"
android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
<activity android:name="com.mjsintegrated.rsamessenger.Login"
android:label="Login"
android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
<activity android:name="com.mjsintegrated.rsamessenger.Signup"
android:label="Signup"
android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
<activity android:name="com.mjsintegrated.rsamessenger.ManMess"
android:label="Manage Messages"
android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
<activity android:name="com.mjsintegrated.rsamessenger.ManKeys"
android:label="Manage Keys"
android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"/>
<activity android:name="com.mjsintegrated.rsamessenger.About"
android:label="About"
android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"/>
<activity android:name="com.mjsintegrated.rsamessenger.MainActivity" android:windowSoftInputMode="adjustPan" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.mjsintegrated.rsamessenger.SmsBroadcastReceiver">
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
</application>
</manifest>