Building combined armv7/x86 apk after Crosswalk integration in an Ionic project

Well I just changed my config.xml following property to false and it combined the build apk. from <preference name=”xwalkMultipleApk” value=”true”/> to <preference name=”xwalkMultipleApk” value=”false”/> My systems ionic info returns Your system information: Cordova CLI: 6.1.1 Gulp version: CLI version 3.9.1 Gulp local: Local version 3.9.1 Ionic CLI Version: 1.7.16 Ionic App Lib Version: 0.7.3 OS: … Read more

embed crosswalk in android studio

Following: https://diego.org/2015/01/07/embedding-crosswalk-in-android-studio/ Open AndroidStudio to project view in app folder edit build.gradle: repositories { maven { url ‘https://download.01.org/crosswalk/releases/crosswalk/android/maven2’}} dependencies { compile fileTree(dir: ‘libs’, include: [‘*.jar’]) compile ‘com.android.support:appcompat-v7:21.0.3’ compile ‘org.xwalk:xwalk_core_library:10.39.235.15’} sync project. add this view in layout xml. <org.xwalk.core.XWalkView android:id=”@+id/xwalkWebView” android:orientation=”vertical” android:layout_width=”fill_parent” android:layout_height=”fill_parent” android:background=”#000000″ /> In activity or fragment: import org.xwalk.core.XWalkPreferences; import org.xwalk.core.XWalkView; in onCreate: XWalkView … Read more

Could not resolve all dependencies for configuration ‘:_armv7DebugCompile’

Please notice that section: Could not resolve all dependencies for configuration ‘:_armv7DebugCompile’. It can happen because building an android project with the crosswalk plugin try to build two apks : one for ARM, the other for x86. The solution is to install Android Support Repository : Open the SDK manager (from command line, type android). … Read more