代码之家  ›  专栏  ›  技术社区  ›  Catalin Ghita

添加Firebase会降低应用程序的整体速度

  •  0
  • Catalin Ghita  · 技术社区  · 8 年前

    我开发了一个应用程序,使用谷歌图书API搜索图书。它的功能位于一个搜索栏中,可以查询一些特定的书籍,并将其显示在列表视图中。 然后我决定添加Firebase作为我的应用程序的云后端。

    注:

    只需几秒钟即可登录到

    我正在发布应用程序级版本。用于信息目的的gradle文件:

    apply plugin: 'com.android.application'
    
    android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId "com.example.android.booktrade_v10"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
     }
    }
    
    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:26.+'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.google.firebase:firebase-database:9.4.0'
    compile 'com.google.firebase:firebase-auth:9.4.0'
    testCompile 'junit:junit:4.12'
    }
    apply plugin: 'com.google.gms.google-services'
    

    你们知道为什么我的应用程序开始这么慢吗?

    1 回复  |  直到 8 年前
        1
  •  1
  •   Frank van Puffelen    8 年前

    实施Firebase后(添加了注册和登录活动

    这些操作需要Firebase SDK连接到其服务器,验证用户帐户,并创建令牌。这需要时间。

    推荐文章