📜  firebase 存储依赖项 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:43.253000             🧑  作者: Mango

代码示例1
dependencies {
    // Import the BoM for the Firebase platform
    implementation platform('com.google.firebase:firebase-bom:28.2.0')

    // Declare the dependency for the Cloud Storage library
    // When using the BoM, you don't specify versions in Firebase library dependencies
    implementation 'com.google.firebase:firebase-storage'
}