I am trying to build hybrid app using xwalkview but continuosly getting this error. I have added crosswalk-webview-arm library and appcompat-v7 libarary and 2 jars. android-support-v4 jar and xwalk-core-library.jar. Removing any one of them is creating complie time error.
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);
}
I had the same problem and found the solution:
Remember to ask for the needed permissions in your Android Manifest: