一、Firebase官网
Firebase官网网址:https://console.firebase.google.com/
二、项目的创建和依赖
按照Firebase的引导,进行项目的创建,通过当前本地as新建项目的包名(例如:com.test.myapplication)生成google-services.json文件,导入相应的依赖库。
运用java:
Module层 gradle:
dependencies {
classpath "com.android.tools.build:gradle:4.2.1"
classpath 'com.google.gms:google-services:4.3.10'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
项目层 gradle:
implementation platform('com.google.firebase:firebase-bom:28.4.0')
implementation 'com.google.firebase:firebase-analytics'
三、实例及应用
通过firebase提供的示例网站:https://firebase.google.com/docs/samples?authuser=0
然后根据业务逻辑就可以开始做一系列的操作了
反编译用法:
同上前两级一样,但是这时我们的包名要和我们反编译完后修改的包名要一致,然后找到string.xml文件,搜寻关于firebase相关的key,例如:analytics、firebase等相关词。然后打开我们之前生成的json文件,对比string.xml,发现有相同特性的就直接替换。替换完key值之后,还有个firebase链接,通过Realtime Database动态生成链接,即可完成整个key值替换,然后去到Firebase官网,Dashboard查看相关信息。