各位高手大大您好
遇到一個問題是Generate signed APK
選則V1, V2的sing方法產生apk檔
然後上傳到google play上架
這時候下載版本 原始apk可以用google sign in登入 成功
用下載 衍生apk用google sign in登入會 失敗
錯誤訊息log
[email protected]變動碼
只有吐出和auth這有關
不知道有遇過相關問題的大大們
可否指點小弟一些方向
先謝謝了
登入部分程式碼
GoogleSignInOptions googleSignInOptions = new
GoogleSignInOptions.Builder(
GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestId()
.requestIdToken(getString(R.string.default_web_client_id))
.build();
GoogleApiClient googleApiClient = new GoogleApiClient.Builder(activity)
.addApi(Auth.GOOGLE_SIGN_IN_API
, googleSignInOptions)
.build();
Intent googleSignInIntent = Auth.GoogleSignInApi.getSignInIntent(googleApiClient);
activity.startActivityForResult(googleSignInIntent, RC_SIGN_IN);