Android Question B4A 6, Google Play Services 30, Never ends updating Google Play

echapeta

Member
Licensed User
Longtime User
After updating a project that is in production for the last 6 moths to B4A 6 and making the suggested changes in order to use Google Play Services 30, now it complies ok, but when we try to upload to Google Play, the developed console stays in "Processing Update" forever.

Could you please help me checking the Manifest and in how to debug Google Play Developer Console in order to find out what's happening ?. Thank You

The manifest is:
<code>
'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: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="9" 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$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Material")
'SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light")
'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: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="19"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
' added
SetApplicationAttribute(android:theme, "@android:style/Theme.Material")

'End of default text.


' B4A 6, google play services 30
'************ Google Play Services Base ************
AddApplicationText(
<activity android:name="com.google.android.gms.common.api.GoogleApiActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="false"/>
<meta-data
android:name="com.google.android.gms.version"
android:value="@Integer/google_play_services_version" />
)
'************ Google Play Services Base (end) ************



' you must add one of these two permissions
' the permission you add will define the accuracy of location updates
AddPermission(android.permission.ACCESS_FINE_LOCATION)
AddPermission(android.permission.INSTALL_PACKAGES)
AddPermission(android.permission.DELETE_PACKAGES)

AddPermission(com.android.vending.INSTALL_REFERRER)
AddReceiverText(Starter,
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>)

AddApplicationText(
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="AIzaSyAC......................"/>
)

AddPermission(android.permission.ACCESS_NETWORK_STATE)


</code>
 
Last edited:

tufanv

Expert
Licensed User
Longtime User
If it is in "processing update" state it doesnt mean that there is a problem with your app. Sometimes the status remains for hours.
 
Upvote 0

echapeta

Member
Licensed User
Longtime User
Yes, but we tried several times waiting up to 16 hours, what's not normal, before we had to wait about 1-3 hours....
 
Upvote 0

tufanv

Expert
Licensed User
Longtime User
Can you access live chat in your developer console ? You can ask them because if there is noı problem with compilation of your app, there must be a problem on google side.
 
Upvote 0
Top