我有以下代码段
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
并且由于java.security.UnrecoverableKeyException失败:无法恢复密钥
在yml文件中,出于安全目的,我为密钥库和密钥使用了不同的密码值。
这里UnrecoverableKeyException: Cannot recover key 他们说我们需要“在您的自定义X509KeyManager中实现getPrivateKey(String alias)以考虑到这一点。”但是我对此很陌生。 在我的代码中该怎么做?