Reputation: 1026
I've got a custom android project in IntelliJ IDEA 15. We are using the default Android webview now, but want to replace it with crosswalks XWalkView.
I've read and tried a lot of options, but can't get the XWalkView to resolve. What have I tried?
Following this tutorial: https://crosswalk-project.org/documentation/android/embedding_crosswalk.html
Try to add the maven dependency to (https://download.01.org/crosswalk/releases/crosswalk/android/maven2/org/xwalk/xwalk_core_library/17.46.448.10/) to the existing android project
Upvotes: 0
Views: 305
Reputation: 761
In your build.gradle
file, add this:
repositories {
maven {
url 'https://download.01.org/crosswalk/releases/crosswalk/android/maven2'
}
}
And to the dependencies,
dependencies {
compile 'org.xwalk:xwalk_core_library:10.39.235.15'
}
Bingo!
Upvotes: 0