我目前正在尝试使用我的应用程序读取和写入Firebase数据库的数据。但是,当我安装pod时,它只安装了Firebase,FirebaseAnalytics,FirebaseCore和FirebaseInstanceID。
有没有以另一种方式获得这个模块?此外,如果它可能错过了任何其他模块,你能告诉我如何获得这些模块吗?感谢。
这是我使用' Firebase /数据库'
进行pod安装时的结果[!]无法满足以下要求:
char ** boom(char * line, int * lng){ size_t toklen; int tksize = *lng; const char d[2] = " "; char ** tk = (char**) malloc(tksize*sizeof(char*)); int i=0; char* token = line; while(*token!=0){ toklen = strcspn(token, d) + 1; tk[i] = malloc(toklen * sizeof *tk[i]); memcpy(tk[i], token, toklen * sizeof *tk[i]); i++; token += toklen; token += strspn(token, d); } // If we don't use the entire array, set the length. *lng = i; return tk; }
要求Firebase/DataBase
您的所有规范来源都没有包含符合相关性的规范:
Podfile
。您有:*可以更新的过期源代码库
Firebase/DataBase
。 *错误输入了名称或版本。 *没有添加 将Podspec托管到Podfile的源代码。注意:从CocoaPods 1.0开始,
pod repo update
默认情况下不会发生pod repo update
。
答案 0 :(得分:0)
您可以通过在podfile中添加以下行来安装数据库SDK:
pod' FirebaseDatabase'