mike_suopys
Newbie
So after 6 months in the making, my app is now just about finished. I am now trying to role out an Alpha on google play.
I did this by:
1.) Submitting the required graphics.
2.) Submitting the signed bundle files.
3.) Filling out the Permissions Declaration Form
Then an hour latter, get this message (image1).
Then reviewed my manifest file...didn't see anything wrong. See code:
So, I decided to resubmit it to google. Just by following the instruction and not selecting "Default Phone Handler" in the Permissions Declaration Form.
But an hour later, I get this in my email (image2):
It's still complaining about some "default phone handler", but I never mentioned anything like that in the declaration form or the manifest. I can't contact the google support team..and there seem to be no help on the internet. How do I fix this issue?
I did this by:
1.) Submitting the required graphics.
2.) Submitting the signed bundle files.
3.) Filling out the Permissions Declaration Form
Then an hour latter, get this message (image1).
Then reviewed my manifest file...didn't see anything wrong. See code:
Code:
<?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>
So, I decided to resubmit it to google. Just by following the instruction and not selecting "Default Phone Handler" in the Permissions Declaration Form.
But an hour later, I get this in my email (image2):
It's still complaining about some "default phone handler", but I never mentioned anything like that in the declaration form or the manifest. I can't contact the google support team..and there seem to be no help on the internet. How do I fix this issue?