-
Notifications
You must be signed in to change notification settings - Fork 23
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
Support for byte [] #7
Comments
BusWear is a wrapper for the Data and Messgae API right? |
It is for Message API only. |
I would like to be able to receive onEvent(byte[]array) and send EventBus.getDefault.post(byte[]array); |
Hi, Great Library by the way. Works like a charm. However, I wanted to ask if in future releases you will support byte[]. The simple reason is that I use proto-buffers in all my wear projects. Reason is obvious, it is faster than Serializable or Parcelable and it is cross platform. I do have to send my messages as a byte[]. The only way I can do it with BusWear right now is by using the Object Parcelable approach, but this would defy the purpose of using protobuffers in the first place. I think it would be awesome if there would be byte [] support. One wouldn't need Parcelable anymore, instead protobuffers which are platform agnostic. What do you think?
The text was updated successfully, but these errors were encountered: