Firebase Auth适用于WiFi,但不适用于移动数据

时间:2019-08-16 16:44:50

标签: java android firebase-authentication

当我尝试在Firebase应用程序上使用移动数据登录时出现此错误: “发生了网络错误(例如超时,连接中断或主机不可达)。”

在我尝试在新的智能手机上登录移动数据之前,我的应用程序运行良好(与旧的智能手机可以正常使用),并且我对问题根源的想法不多了。这是我已经尝试过的东西”

  1. 检查数据限制,数据限制和权限。
  2. 重置APN。
  3. 检查网络提供商:我将新的SIM卡放在旧手机中,并且可以正常工作,当我在新手机上共享该连接时,它也可以正常工作。
  4. 检查android版本:我认为这可能是新手机的Android版本(API 28),但对于其他使用API​​ 28版本的用户来说,它仍然可以正常工作。
  5. 我也尝试过改用2G或3G,但那没有用。
  6. 检查google play服务:已激活

这是我的gradle文件:

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
        compileSdkVersion 28
        defaultConfig {
        applicationId "com.example.caroloucl"
        minSdkVersion 23
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.google.firebase:firebase-auth:16.0.5'
    implementation 'com.google.firebase:firebase-core:16.0.5'
    implementation 'com.google.firebase:firebase-database:16.0.5'
    implementation 'com.google.firebase:firebase-storage:16.0.5'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'de.hdodenhof:circleimageview:2.2.0'
}

0 个答案:

没有答案