“Зависимость хранения огненной базы” Ответ

Зависимость хранения огненной базы

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'
}
Thoughtless Tiger

Зависимость хранения огненной базы


dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.4.0' // RECOMMENDED CHANGE
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.google.firebase:firebase-auth:11.0.2' // CHANGED
    compile 'com.google.firebase:firebase-database:11.0.2' // CHANGED
    compile 'com.google.firebase:firebase-storage:11.0.2'
    compile 'com.github.bumptech.glide:glide:4.0.0-RC1'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0-RC1'
    testCompile 'junit:junit:4.12'
}

Sore Skipper

Ответы похожие на “Зависимость хранения огненной базы”

Вопросы похожие на “Зависимость хранения огненной базы”

Больше похожих ответов на “Зависимость хранения огненной базы” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования