crosswalk-runtime

71mb added to app size for crosswalk

懵懂的女人 提交于 2019-11-27 09:09:27
I really hope I'm doing something wrong. I've added crosswalk to a project and have had some serious app size increase. To test I've done the following. created a new ionic project added my app code to /www/ added ngcordova and various plugins Ran ionic build and drop the apk onto a Genymotion emulator. The app was very slow but had a app size of 8.01mb (once installed - checked with app manager). Then I deleted the app from the emulator Ran ionic browser add crosswalk Ran ionic run android which installed the correct .apk on the emulator. On checking in manage apps the app size is now 79.36mb

Could not resolve all dependencies for configuration ':_armv7DebugCompile'

↘锁芯ラ 提交于 2019-11-27 08:14:16
The following error occurs when trying to build an android app with cordova and the cordova-crosswalk plugin: FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project 'android'. > Could not resolve all dependencies for configuration ':_armv7DebugCompile'. > Could not find any version that matches com.android.support:support-v4:+. Searched in the following locations: https://repo1.maven.org/maven2/com/android/support/support-v4/maven-metadata.xml https://repo1.maven.org/maven2/com/android/support/support-v4/ https://download.01.org/crosswalk

embed crosswalk in android studio

拟墨画扇 提交于 2019-11-27 07:31:03
I'm new about android programming and android studio. I researched crosswalk embed API for my project and tried to embed it in android studio. But I couldn't be succesfull. Even I don't know exactly how can embed an API that has gradle file or not. Maybe there is a problem with gradle system? In brief, how can I embed crosswalk-webview to my project with android studio step by step? Thanks a lot you. 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

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

末鹿安然 提交于 2019-11-27 06:44:20
I have added Crosswalk to my ionic project. When i do ionic build android it outputs two separate APK files, one for armv7 and one for x86. However i want one single apk file bundling two architectures together. I tried setting BUILD_MULTIPLE_APKS = false but it's still building two separate apks. There is a post here saying : Took me a minute but you can get the single build file by commenting out the cdvBuildMultipleApks=true line in the platforms/android/gradle.properties Cheers But i don't have any gradle.properties file in my platforms/android/ folder, i have a project.properties file and

How to debug Crosswalk webview remotely?

余生长醉 提交于 2019-11-27 06:18:21
问题 I'm trying to use XWalkView in Android 5. When I try to inspect an XWalkView in chrome://inspect, I can see the name of the app that is running, but no options for inspection. I also attempted in Canary, but it never got past USB auth for debug. How can I use chrome dev tools to debug XWalkView? 回答1: To debug xwalk webview remotely is similar to webview except the webview config. a. Config your chrome and device for debugging. Refer to google articles or SO post. b. Config your webivew for

71mb added to app size for crosswalk

爱⌒轻易说出口 提交于 2019-11-26 17:48:34
问题 I really hope I'm doing something wrong. I've added crosswalk to a project and have had some serious app size increase. To test I've done the following. created a new ionic project added my app code to /www/ added ngcordova and various plugins Ran ionic build and drop the apk onto a Genymotion emulator. The app was very slow but had a app size of 8.01mb (once installed - checked with app manager). Then I deleted the app from the emulator Ran ionic browser add crosswalk Ran ionic run android

Could not resolve all dependencies for configuration ':_armv7DebugCompile'

你说的曾经没有我的故事 提交于 2019-11-26 17:45:31
问题 The following error occurs when trying to build an android app with cordova and the cordova-crosswalk plugin: FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project 'android'. > Could not resolve all dependencies for configuration ':_armv7DebugCompile'. > Could not find any version that matches com.android.support:support-v4:+. Searched in the following locations: https://repo1.maven.org/maven2/com/android/support/support-v4/maven-metadata.xml

embed crosswalk in android studio

六眼飞鱼酱① 提交于 2019-11-26 13:20:54
问题 I'm new about android programming and android studio. I researched crosswalk embed API for my project and tried to embed it in android studio. But I couldn't be succesfull. Even I don't know exactly how can embed an API that has gradle file or not. Maybe there is a problem with gradle system? In brief, how can I embed crosswalk-webview to my project with android studio step by step? Thanks a lot you. 回答1: Following: https://diego.org/2015/01/07/embedding-crosswalk-in-android-studio/ Open