Questions tagged «firebase»

Firebase是一个无服务器平台,用于统一开发移动设备和Web应用程序。与RDBMS相比,它使用NO-SQL结构。

3
在Xcode上启用Firebase Analytics
我正在尝试测试Firebase Analytics的实施。他们在文档中指出: 通过将-FIRDebugEnabled参数传递给应用程序来启用调试模式。您可以在应用程序的Xcode方案中添加此参数。通过-FIRDebugEnabled启用调试模式时,应用程序的进一步执行也将处于调试模式。为了返回默认模式,必须使用应用程序参数-FIRDebugDisabled显式禁用调试模式。 不幸的是,我不知道我在哪里设置这个方案。在Android中,这很容易。帮助将不胜感激。

8
在模块guava-20.0.jar(com.google.guava:guava:20.0)中找到的重复类com.google.common.util.concurrent.ListenableFuture
在我的中使用implementation 'com.google.firebase:firebase-inappmessaging-display:17.2.0'时app/build.gradle,出现以下错误: Duplicate class com.google.common.util.concurrent.ListenableFuture found in modules guava-20.0.jar (com.google.guava:guava:20.0) and listenablefuture-1.0.jar (com.google.guava:listenablefuture:1.0) Go to the documentation to learn how to Fix dependency resolution errors. 我的内在app/build.gradle是: implementation 'com.google.android.gms:play-services-base:16.1.0' implementation 'com.google.android.gms:play-services-analytics:16.0.8' implementation 'com.google.android.gms:play-services-awareness:16.0.0' implementation 'com.google.android.gms:play-services-cast:16.2.0' implementation 'com.google.android.gms:play-services-gcm:16.1.0' implementation 'com.google.android.gms:play-services-location:16.0.0' implementation 'com.google.android.gms:play-services-maps:16.1.0' implementation 'com.google.firebase:firebase-core:16.0.8' implementation 'com.google.firebase:firebase-iid:17.1.2' implementation 'com.google.firebase:firebase-messaging:17.6.0' implementation 'android.arch.work:work-runtime:1.0.1' implementation 'com.android.support:multidex:1.0.3' …

9
由于GoogleSignIn,AdMob提交应用程序“应用程序尝试访问无使用说明的隐私敏感数据”时,iOS 10 GM发布错误
我刚刚从iOS 10 GM版本开始面对这个问题。我收到一封电子邮件,说: 要处理您的交货,必须更正以下问题: 这个应用程式尝试存取没有使用说明的隐私权敏感资料。应用程序的Info.plist必须包含NSCameraUsageDescription键,该键具有字符串值,该字符串值向用户说明应用程序如何使用此数据。 完成所需的更正后,您可以重新交付更正后的二进制文件。 问候, App Store团队 我正在使用google GoogleSignIn。我没有使用Firebase,但是在将GoogleSignIn与可可豆荚一起安装时,我在日志中看到它自动安装了Firebase。 除了必须定义这些键之外,我们还有其他事情可以做吗,因为我的应用与相机/照片等无关,因此我不希望用户认为我们正在使用它们。 我注意到其他人也遇到了这个问题:https : //forums.developer.apple.com/thread/62229

5
Firestore获取数据时性能下降的问题
与1/10比率的实时数据库相比,检索存储在文档中的基本数据时,Firestore的性能存在问题。 使用Firestore,首次通话平均需要3000毫秒 this.db.collection(‘testCol’) .doc(‘testDoc’) .valueChanges().forEach((data) => { console.log(data);//3000 ms later }); 使用实时数据库,第一次通话平均需要300毫秒 this.db.database.ref(‘/test’).once(‘value’).then(data => { console.log(data); //300ms later }); 这是网络控制台的屏幕截图: 我正在使用AngularFire2 v5.0 rc.2运行Javascript SDK v4.50。 有没有人遇到这个问题?

13
如何将Firestore日期/时间戳转换为JS Date()?
我正在尝试将以下日期转换为javascript Date()对象。当我从服务器取回它时,它是一个Timestamp对象, Firebase Firestore控制台的屏幕截图: 当我在从Firestore返回的对象列表上尝试以下操作时: list.forEach(a => { var d = a.record.dateCreated; console.log(d, new Date(d), Date(d)) }) 我得到以下输出: 显然时间戳是不同的,并且并非都在2018年9月9日(恰好是今天)的同一日期。我也不确定为什么会new Date(Timestamp)导致invalid date。我是JS新手,我对日期或时间戳记做错了吗?



7
install_referrer意向弃用
我收到了Google的电子邮件: 我们最近宣布,将弃用install_referrer意向广播机制。由于您的一个或多个应用使用此意图来跟踪引荐,因此我们希望确保您在2020年3月1日之前进行切换。在此日期之后,新版本的Play商店应用将在应用安装后不再广播install_referrer意图。 我没有install_referrer直接使用,但是在浏览合并清单时,我发现某些以程序包名称命名的firebase服务正在com.google.firebase.measurement使用它。 我的Firebase依赖项已更新到最新版本。 我应该在乎吗?
76 android  firebase 

1
Firebase更新与设置
正如标题所说,我不能得到之间的区别update和set。此外,文档也无济于事,因为如果我改用set,更新示例的工作原理完全相同。 update来自文档的示例: function writeNewPost(uid, username, title, body) { var postData = { author: username, uid: uid, body: body, title: title, starCount: 0 }; var newPostKey = firebase.database().ref().child('posts').push().key; var updates = {}; updates['/posts/' + newPostKey] = postData; updates['/user-posts/' + uid + '/' + newPostKey] = postData; return firebase.database().ref().update(updates); } 相同的例子使用 set …




5
Firebase和GraphQL [关闭]
已关闭。这个问题是基于观点的。它当前不接受答案。 想改善这个问题吗?更新问题,以便通过编辑此帖子以事实和引用的形式回答。 2年前关闭。 改善这个问题 是否有人对GraphQL和Firebase有任何经验?我想一个将firebase调用放置在相关字段的解析器中,并将一些变量从组件的props传递到查询的参数中。 我们如何使用GraphQL在Firebase中插入新数据?



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.