Android LinkedIn mobile SDK error?

前端 未结 3 1617
鱼传尺愫
鱼传尺愫 2020-12-11 04:37

I am integrated LinkedIn successfully using newly released Android Mobile SDK and all done well using Android Studio, but when I gener

3条回答
  •  醉梦人生
    2020-12-11 05:11

    Since you have this issue only with signed APK, seems you have configured an incorrect release key hash value.

    Try to check that the release key hash value of the keystore you used to sign the APK is correctly listed in the "Android Package Names and Hashes" field of your LinkedIn application's configuration as described in the documentation:

    Generating a release key hash value

    To generate a release key hash value, use the following command:

    keytool -exportcert -keystore YOUR_RELEASE_KEY_PATH -alias YOUR_RELEASE_KEY_ALIAS | openssl sha1 -binary | openssl base64
    


    Configure the values

    In the "Android Package Names and Hashes" field of your LinkedIn application's configuration, provide one or more values in the following comma-separated format:

    Android.Package.Name,Key-Hash-Value
    

提交回复
热议问题