反应原生Google登录失败-错误代码16(已取消)

时间:2018-10-15 09:58:29

标签: android react-native google-signin

我正在使用Google登录,但已取消错误,错误代码为16。

复制步骤 我可以检查GoogleSignin.hasPlayServices()的状态;并打开弹出窗口以选择帐户。选择帐户时,显示错误CANCELED代码16。

预期行为 它应该返回用户信息。

实际行为 它给出了错误的取消代码16。

环境: 1。 android / build.gradle:

dependencies {
    classpath 'com.android.tools.build:gradle:3.1.2'
    classpath 'com.google.gms:google-services:4.1.0'
}

2。 android / app / build.gradle:

android {
compileSdkVersion 27
buildToolsVersion "27.0.3"

defaultConfig {
    applicationId "com.pacelogin"
    minSdkVersion 19
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    ndk {
        abiFilters "armeabi-v7a", "x86"
    }
 }
splits {
    abi {
        reset()
        enable enableSeparateBuildPerCPUArchitecture
        universalApk false  // If true, also generate a universal APK
        include "armeabi-v7a", "x86"
    }
}
buildTypes {
    release {
        minifyEnabled enableProguardInReleaseBuilds
        proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
    }
}
applicationVariants.all { variant ->
    variant.outputs.each { output ->
        // For each separate APK per architecture, set a unique version code as described here:
        // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
        def versionCodes = ["armeabi-v7a":1, "x86":2]
        def abi = output.getFilter(OutputFile.ABI)
        if (abi != null) {  // null for the universal-debug, universal-release variants
            output.versionCodeOverride =
                    versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
        }
       }
      }
     }

 dependencies {
  implementation (project(':react-native-google-signin')){
    exclude group: "com.google.android.gms"
}
 implementation fileTree(dir: "libs", include: ["*.jar"])
 implementation "com.android.support:appcompat-v7:27.1.1"
 implementation 'com.google.android.gms:play-services-auth:16.0.1'
 implementation "com.facebook.react:react-native:+"  // From node_modules
 implementation 'com.google.firebase:firebase-core:16.0.4'
 implementation "com.google.android.gms:play-services-base:16.0.1"
 implementation "com.google.android.gms:play-services-basement:15.0.1"
}
  

更新:我引用了this链接

1 个答案:

答案 0 :(得分:1)

嘿Namrata,您首先检查您是否正在为项目生成正确的密钥库文件。 1。确保提供正确的密码和别名,以用于创建密钥库文件。 2.将密钥库文件存储在您的(/ android / app /)路径中,或者您可以创建名为密钥库的文件夹,然后将其定位在其中。(/ android / app / keystore /)

  

确保您指定了正在使用的模式。如果是调试模式,请使用debug部分,否则请使用发布模式。

signingConfigs {
        debug {
            storeFile file("../app/YOUR_FILE_NAME.keystore")
            storePassword "YOUR_STORE_PASSWORD"
            keyAlias "YOUR_ALIAS_NAME"
            keyPassword "YOUR_PASSWORD"
        }
       /* release {
            storeFile file("../app/debug.keystore")
            storePassword "YOUR_STORE_PASSWORD"
            keyAlias "YOUR_ALIAS_NAME"
            keyPassword "YOUR_PASSWORD"
        }*/
    }
  1. 验证您使用的依赖项是否正确。