问题描述
在Android上使用Firebase的最低Android SDK版本是什么?
我看到AndroidDrawing示例适用于API Level 17,但不适用于11。限制?更准确地说:它不会崩溃,但应用程序永远不会收到任何数据。因此,对于AndroidDrawing示例,我基本上是自己绘制的。
编辑:平台版本4.0(API级别14)也不起作用。 $ b
Firebase dev这里。如果您抓住最新的SDK版本(v1.0.2,),它应该一直回到Android 2.2,我相信是API级别8.如果更新后仍然无法使用,请启用日志记录
Firebase.getDefaultConfig()。setLogLevel(Logger.Level.DEBUG);
并将其输出到support@firebase.com。
What is the minimum Android SDK version to use Firebase on Android?
I see that the AndroidDrawing example works with API Level 17, but not 11. What exactly is the limit?
To be more precise: it doesn't crash, but the application never receives any data. So for the AndroidDrawing example I am basically drawing on my own.
edit: Platform version 4.0 (API Level 14) doesn't work either.
Firebase dev here. If you grab the latest SDK build (v1.0.2, https://www.firebase.com/docs/downloads.html), it should work all the way back to Android 2.2, which I believe is API Level 8. If after updating it still doesn't work, please enable logging
Firebase.getDefaultConfig().setLogLevel(Logger.Level.DEBUG);
and either post the output or email it to support@firebase.com
这篇关于Firebase for Android SDK支持?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!