我试图在android studio中使用Nutiteq SDK 3.0
,但我无法让它工作。
添加所有库,但在使用时添加到布局文件中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.nutiteq.ui.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
它会抛出错误:
> Rendering problems:
The following classes could not be instantiated:
- com.nutiteq.ui.MapView
java.lang.UnsatisfiedLinkError: no nutiteq_maps_sdk in java.library.path
如果我在某个类文件中导入,它运行良好并且不会出现任何错误 有什么帮助吗?