hello all,
Facing a new issue... i have a app published on the appstore..below is the manifest
The app has a service with StartatBoot=true
plz see attached image for permissions displayed on play store..
Some customers get the "this app is incompatible with your device", for example..
one customer has a lenovo A369i, Andrid OS 4.2.2, he still gets this error.
Does anyone else face this issue? what should i be looking at?
regards
carloz
Facing a new issue... i have a app published on the appstore..below is the manifest
The app has a service with StartatBoot=true
B4X:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
SetManifestAttribute("android:installLocation", "auto")
AddManifestText(<permission android:name="$PACKAGE$.permission.C2D_MESSAGE" android:protectionLevel="signature" />)
AddPermission($PACKAGE$.permission.C2D_MESSAGE)
AddPermission(com.google.android.c2dm.permission.RECEIVE)
' Push Service Receiver Attribute
SetReceiverAttribute(PushService, android:permission, "com.google.android.c2dm.permission.SEND")
' Service Receiver Text
AddReceiverText(PushService,
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="$PACKAGE$" />
</intent-filter>
<intent-filter>
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="$PACKAGE$" />
</intent-filter>)
plz see attached image for permissions displayed on play store..
Some customers get the "this app is incompatible with your device", for example..
one customer has a lenovo A369i, Andrid OS 4.2.2, he still gets this error.
Does anyone else face this issue? what should i be looking at?
regards
carloz