0

我正在构建一个自定义版本的 Firefox Fennec,并且最近添加了一个使用 android 的 RecyclerView 的 UI。所以我想将 android-support-v7-recyclerview.jar 导入我的 moz.build 文件,但不知道如何。

我试图将 android-support-v7-recyclerview.jar 添加到 gbjar.extra_jars,但它在下面给了我例外。

Exception in thread "main" java.lang.NoClassDefFoundError: android/support/v7/widget/RecyclerView$LayoutManager
 0:46.88    at java.lang.Class.getDeclaredMethods0(Native Method)
 0:46.88    at java.lang.Class.privateGetDeclaredMethods(Class.java:2615)
 0:46.88    at java.lang.Class.getDeclaredMethods(Class.java:1860)
 0:46.88    at org.mozilla.gecko.annotationProcessors.utils.GeneratableElementIterator.<init>(GeneratableElementIterator.java:32)
 0:46.88    at org.mozilla.gecko.annotationProcessors.AnnotationProcessor.main(AnnotationProcessor.java:74)
 0:46.88 Caused by: java.lang.ClassNotFoundException: android.support.v7.widget.RecyclerView$LayoutManager
 0:46.88    at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
 0:46.88    at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
 0:46.88    at java.security.AccessController.doPrivileged(Native Method)
 0:46.88    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
 0:46.88    at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
 0:46.88    at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
 0:46.88    ... 5 more

在 moz.build 中还有什么可做的吗?

4

1 回答 1

0

在 /mozilla-central/mobile/android/base/ 中有 Makefile.in 文件,找到 ALL_JARS 并在那里添加你的外部 jar 文件!

于 2015-05-18T06:35:35.803 回答