-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Device Sync request #2621
base: master
Are you sure you want to change the base?
Conversation
@@ -28,4 +28,5 @@ public class Constants { | |||
public static final String MICROG_PACKAGE_SIGNATURE_SHA1 = "10321bd893f69af97f7573aafe9de1dc0901f3a1"; | |||
@Deprecated | |||
public static final int MAX_REFERENCE_VERSION = GMS_VERSION_CODE; | |||
public static final String GP_PACKAGE_NAME = "com.android.vending"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not using VENDING_PACKAGE_NAME
from here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not using
VENDING_PACKAGE_NAME
from here?
Just a general constant
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't understand your reply.
In my opinion shouldn't there be more than one costant for "com.android.vending" and also the name GP_PACKAGE_NAME isn't intuitive.
Can't they be unified?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VENDING_PACKAGE_NAME
OK, got it.
Added a device information synchronization request after logging in to the account to solve the problem of missing data in some request interfaces that rely on device information.
For example, when there is no device synchronization in the /assetModuleDelivery request in #2506 , some games lack resource package data returned.