Parse-SDK-Android icon indicating copy to clipboard operation
Parse-SDK-Android copied to clipboard

ParseInstallation not retrieving values on Android 8.0

Open danielvera64 opened this issue 6 years ago • 1 comments

Hi,

In my Android app I'm using 1.16.7 version of Parse. I install the signed apk of my app on devices with Android 8.0 and the following code fails:

ParseInstallation installation = ParseInstallation.getCurrentInstallation(); int data = installation.getInt("CUSTOM_NAME");

The variable data is 0. On Parse the installation table has the right value. If I try the same signed apk on an Android device with a different android version my app works well.

Does someone know how to solve this problem?

Thanks

danielvera64 avatar Jun 25 '18 22:06 danielvera64

DId retrieved your object with fetchInBackground http://docs.parseplatform.org/android/guide/#retrieving-objects so it's up to date with the database?

flovilmart avatar Jun 25 '18 22:06 flovilmart