-
Notifications
You must be signed in to change notification settings - Fork 20
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
Use a wrapper class for the activities as well #80
Comments
shankari
added a commit
to shankari/e-mission-server
that referenced
this issue
Feb 24, 2016
As part of the switch to cordova, we moved to a newer version of the google play API. Unfortunately, this meant that the weird field names for the confidence and type changed to a different set of weird field names. We should really use a standard wrapper class for this on android as well to avoid such silent breakages in the future. e-mission/e-mission-data-collection#80
This was only referenced as a potential future cleanup, not actually fixed! |
This was only referenced as a potential future cleanup, not actually fixed! |
This was only referenced as a potential future cleanup, not actually fixed! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We already do this on iOS. On android, we are using gson directly, but the format is internal and is subject to change, and in fact did change when we bumped google play services versions.
it went from agb and agc to what looks like zzaEg and zzaEh, and of course, promptly broke all our formatting.
We will work around this on the server now, but we really need to have a wrapper on the client that uses the public APIs. That will also make it easier to have a visualization of unpushed data on android.
The text was updated successfully, but these errors were encountered: