我已经能够建立AOSP。但是,我尝试将此应用添加到AOSP并使用mm ghetto-unlock进行构建,但我收到的错误是无法找到符号而且@Override方法不会覆盖任何内容。我相当确定问题是应用程序没有与正确的库或API绑定,但我不确定我做错了什么。任何帮助将不胜感激。
答案 0 :(得分:4)
首先确保你有这些库:libs / sc-light-jdk15on-1.47.0.2.jar libs / scprov-jdk15on-1.47.0.2.jar
覆盖问题是AOSP主分支已将TrustAgentService的方法“onSetTrustAgentFeaturesEnabled”更改为“onConfigure”,与棒棒糖发布分支进行比较。(lollipop,master)
所以修改GhettoTrustAgent.java 如下,它应该没有错误地构建。
import android.os.PersistableBundle;
import java.util.List;
......
//@Override
//public boolean onSetTrustAgentFeaturesEnabled(Bundle options) {
// Log.v(TAG, "Policy options received: " + options.getStringArrayList(KEY_FEATURES));
//
// return true; // inform DPM that we support it
//}
@Override
public boolean onConfigure(List<PersistableBundle> options) {
return true; // inform DPM that we support it
}
......
使其成为系统应用程序并将其打包在system.img。
中