我正在构建自定义版本的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中还有什么可以做的吗?
答案 0 :(得分:0)
/ mozilla-central / mobile / android / base /中有Makefile.in文件 找到ALL_JARS并在那里添加你的外部jar文件!