经过大量搜索后,我仍然无法找到是否可以在我的 .java 文件中使用 lib***.a 的一件事。
i.e:
static {
// Library
System.loadLibrary("***");
}
当我阅读You must provide a native shared library that contains the implementation of these methods
overview.html 中的这一行时,我产生了这个疑问。
所以任何人都可以告诉我是否可以在 .java 文件中使用 lib***.a 。
如果是,那怎么办?
因为you should not use the 'lib' prefix and '.so' suffix here.
写在overview.html中。