crosswalk

crosswalk/engine/XWalkWebViewEngine.java:50: error: cannot find symbol

匿名 (未验证) 提交于 2019-12-03 01:04:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am getting above mentioned error when i add crosswalk to my project.here i am attaching screen-shot of error :- i even tried with :- cordova plugin add https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview.git but still getting same error as above.If i do not add crosswalk my application works fine, this issue only comes if i add crossWalk. I even tried with ionic browser add crosswalk@12.41.296.5..but again no help from this too Any help will be appreciated , Thanks 文章来源: crosswalk/engine/XWalkWebViewEngine.java:50: error:

Maven repository down?

故事扮演 提交于 2019-12-01 11:46:56
The maven repository appears to be down. Trying to fetch data from the following url results in an error: https://download.01.org/crosswalk/releases/crosswalk/android/maven2/org/xwalk/xwalk_core_library/maven-metadata.xml Is this temporary or does this have to do with crosswalk no longer being developed? => Errors executing Cordova commands: While building Cordova app for platform Android: Error:/Users/fullhdpixel/Projects/MyRoutes/.meteor/local/cordova-build/platforms/android/gradlew: Command failed with exit code 1 Error output: FAILURE: Build failed with an exception. * What went wrong: A

webaudio not working with ionic using crosswalk on android device

蹲街弑〆低调 提交于 2019-12-01 07:03:38
I created an ionic webrtc app that runs perfectly when using ionic serve (on web browser, witch is normal). but was not working at all on the device since the getUserMedia function was not able to execute. The solution i found is to install crosswalk, update permissions in the AndroidManifest.xml and add the meta tag on the index.html for content security: <meta http-equiv="Content-Security-Policy: media-src: 'self' mediastream"> Now, i have a working ionic webrtc app but only video, the audio is not working. the android app is able to diplay video with its audio, but seems to only send video

Incorrect APKs versionCode order when building multiple APKs for both 32bit and 64 bit platforms with crosswalk

若如初见. 提交于 2019-11-30 23:08:43
I need to build the ionic/cordova application for both 32bit (armeabi-v7a and x86) and 64bit (arm64-v8a and x86_64) platforms. I build four separate APKs using commands ionic build android --release and ionic build android --release --xwalk64bit All goes well except that the versionCode (for version set to 0.0.11) is a little off - see below The problem is that x86 and x86_64 must have higher versionCode then ARM apks. This is required because x86 devices are able to handle ARM libs but there is no ARM device able to handle x86 libs. So we must keep the version code of x86 APK higher than the

Cordova + Crosswalk iOS still using UIWebView

放肆的年华 提交于 2019-11-30 05:26:04
I didn't find a lot of instruction setting up crosswalk for iOS it seems like it should be as simple as: cordova plugin add cordova-plugin-crosswalk-webview cordova build ios Because I've had issues with plugins not taking effect before I do the following: cordova plugin add cordova-plugin-crosswalk-webview cordova platform remove ios cordova platform add ios cordova build ios After having done this, when I capture the view hierarchy and inspecting that it's still using "UIWebView" which has a "UIWebBrowserView" inside of it (which is inside of a scroll view and there are a couple image views

Build error after adding Crosswalk plugin to a Cordova Android project

怎甘沉沦 提交于 2019-11-30 02:14:57
I'm using the latest cordova android (5.1.0). The project is building and running fine without crosswalk, but after I add the crosswalk plugin using cordova plugin add https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview.git I get the following build error: Error:15:53:54.127 [ERROR] [system.err] /Users/or/Projects/Test/cordova/platforms/android/src/org/crosswalk/engine/ XWalkWebViewEngine. java:48: error: cannot find symbol 15:53:54.127 [ERROR] [system.err] import org.xwalk.core.XWalkGetBitmapCallback; 15:53:54.128 [ERROR] [system.err] ^ 15:53:54.128 [ERROR] [system.err]

How to add crosswalk webview in my own android library module?

久未见 提交于 2019-11-26 22:53:25
I am in the development of an Android library module which has to include Crosswalk Webview. I create the library using Github Sonatype ( https://github.com/sonatype/ ). It works fine without Crosswalk Webview. I tried the following 3 methods to include Crosswalk. Method 1: Add Crosswalk Webview library in my library project app gradle Error : (Compile error) Failed to resolve: org.xwalk:xwalk_core_library:18.48.477.13 Method 2: Add crosswalk aar file in my library project Reference link for adding aar file How to import a .aar file into Android Studio 1.1.0 and use it in my code I have

How to add crosswalk webview in my own android library module?

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-26 08:26:36
问题 I am in the development of an Android library module which has to include Crosswalk Webview. I create the library using Github Sonatype (https://github.com/sonatype/). It works fine without Crosswalk Webview. I tried the following 3 methods to include Crosswalk. Method 1: Add Crosswalk Webview library in my library project app gradle Error : (Compile error) Failed to resolve: org.xwalk:xwalk_core_library:18.48.477.13 Method 2: Add crosswalk aar file in my library project Reference link for