You meant that you cannot install it from Google Play?
Hi Erel
Thanks for responding.
Yes, cannot install from google play, it is not visible to the device. We have 4 apps in the app store. Only 2 are visible to the device.
Here is the manifest for the visible app's
'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$")
AddPermission(android.permission.READ_SMS)
AddPermission(android.permission.WRITE_SMS)
AddPermission("android.permission.RECEIVE_SMS")
AddReceiverText(sms_manager,
<intent-filter>
<action android:name="android.provider.Telephoney.SMS_RECEIVED" />
</intent-filter> )
'End of default text.
'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" />
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
AddPermission("android.permission.CALL_PHONE")
'End of default text.
Here is the manifest's for the app that cannot be seen by the device.
'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$")
AddPermission("android.permission.READ_SMS")
AddPermission("android.permission.WRITE_SMS")
AddPermission("android.permission.RECEIVE_SMS")
AddPermission("android.permission.CALL_PHONE")
AddPermission("android.permission.ACCESS_WIFI_STATE")
AddPermission("android.permission.CHANGE_WIFI_STATE")
AddPermission("android.permission.INTERNET")
AddPermission("android.permission.ACCESS_FINE_LOCATION")
AddPermission("android.permission.WRITE_SETTINGS")
AddPermission("android.permission.GET_TASKS")
AddPermission("android.permission.KILL_BACKGROUND_PROCESSES")
AddReceiverText(sms_manager,
<intent-filter>
<action android:name="android.provider.Telephoney.SMS_RECEIVED" />
</intent-filter> )
'End of default text.
And here is the widget manifest, also cannot be seen by the device.
'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" />
<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.
It a very strange one indeed.
Hopefully it can be solved
Regards
John.