作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想制作一个带有单独数据模块的多模块应用程序。我可以在普通的 kotlin 模块中导入 firebase 吗?如果不能,我应该如何修改我的数据模块才能将 firebase 导入其中?
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.2'
}
}
plugins {
id "org.jetbrains.kotlin.jvm"
}
dependencies {
def moduleDependencies = rootProject.ext.remoteDependencies
def moduleTestDependencies = rootProject.ext.remoteTestDependencies
implementation moduleDependencies.firestore
implementation moduleDependencies.firestoreKtx
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
apply plugin: 'com.google.gms.google-services'
这是我的数据模块中的当前构建文件。目前我能够同步和构建,但我无法在模块中导入 firebase 库。
编辑:问题是我想在 app 模块以外的模块中使用 firestore,但是当我在数据模块中添加它的依赖项时,我无法使用 Firestore(因为未解析的引用)
最佳答案
问题是我试图在纯 kotlin 库中使用 firestore,以解决我必须添加的问题:apply plugin: 'com.android.library'
, apply plugin: 'kotlin-android'
, 和一个 android
block 到 gradle 文件模块的。 (基本上我必须将我的 kotlin 库转换为 android 库)
关于android - 如何将 firebase 导入 app 模块以外的模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59504272/
我是一名优秀的程序员,十分优秀!