I have a Django webapp that is collecting all sorts of information. As soon as it gets something I want it to be able to push it to the Android device. For this use case, the Android device will ALWAYS have the app running. I could do this by having the Android poll the Django app. I was wondering though if there is a way for Django app to push to the Android?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- Django __str__ returned non-string (type NoneType)
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
Use Google Cloud Messaging for Android.
You could check out the Android Cloud to Device Messaging Framework
Here is a django prototype utilizing the framework: https://github.com/patrickbaumann/c2dmprototype