0
我知道這個問題已經被問過這樣首先讓我列舉的一切,我嘗試沒有任何成功的事情:密鑰散列:Facebook的SDK
- I made my app live in facebook settings
- 我出版我的應用程序的發佈模式。
- I registered the hash that did not match in the app settings settings
- I also registered的hash provided by this code,發佈在釋放模式的應用程序和結果散列的是,我在應用設置中已經註冊了相同的散列。
- 我執行命令
keytool -exportcert -alias '***' -keystore '****' | '*****' sha1 -binary | '*****' base64
並將其粘貼到應用程序設置中的散列鍵中。
應用程序登錄的唯一方法是如果Facebook應用程序登錄的管理員。但是,如果別人使用該應用程序並登錄,則會發生錯誤。
唯一一個我沒有;試過的是deleting the fb app and start over,但我想知道我最先失蹤的是什麼。
我是不是瘋了?是。我有足夠的嘗試嗎?看看該PIC波紋管(我想你就會知道,色彩的手段)
應用程序和SDK的信息:
android {
signingConfigs {
config {
keyAlias '****'
keyPassword '****'
storeFile file('****')
storePassword '****'
}
}
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "****"
minSdkVersion 16
targetSdkVersion 21
versionCode 1
multiDexEnabled true
versionName "***"
}
dexOptions {
incremental true
preDexLibraries = false
jumboMode = false
maxProcessCount 4
javaMaxHeapSize "6g"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:2.0.5-beta'
compile 'com.android.support:appcompat-v7:23.4.0'
compile '****'
compile 'com.squareup.retrofit2:converter-gson:2.0.2'
compile 'com.facebook.android:facebook-android-sdk:4.8.0' -- facebook sdk
compile 'com.google.android.gms:play-services:9.2.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.android.support:design:23.4.0'
compile '****'
}