我正在尝试使用xwalkview构建混合应用程序,但不断收到此错误。我添加了crosswalk-webview-arm库和appcompat-v7 libarary和2个罐子。 android-support-v4 jar和xwalk-core-library.jar。删除其中任何一个都会导致编译时间错误。
android_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.hcp_android.NewMainActivity" >
<org.xwalk.core.XWalkView
android:id="@+id/webPage"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
NewMainActivity.java
public class NewMainActivity extends Activity {
XWalkView xwalkview;
MediaPlayer ringtone;
AndroidJSInterface jSInterface;
boolean doubleBackToExitPressedOnce = false;
int k = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
xwalkview=(XWalkView)findViewById(R.id.webPage);
jSInterface = new AndroidJSInterface(this);
xwalkview.addJavascriptInterface(jSInterface, "AndroidJSInterface");
xwalkview.load("file:///android_asset/login.html", null);
}
答案 0 :(得分:0)
我遇到了同样的问题并找到了解决方案:
请记住在Android Manifest中询问所需的权限:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
答案 1 :(得分:0)
我认为这应该是so库冲突的结果,在build.gradle的产品阅读中:
ndk {
abiFilters "armeabi", "x86"
}