I am trying to follow the instructions to build a webview apk from a chrome base. I am running Android 7.0 build. I finished the compilation process for chrome and created an APK. I have two questions related to the steps after generating the APK.
Firstly, the library name is different from what I expected. The default value of webview.apk
is the library name libwebviewchromium.so
, but the APK built with chrome ( SystemWebView.apk
) contains lib libwebviewchromium.cr.so
. I wanted to ask if this could cause problems, and if others also saw it.
Secondly, I can not remove the com.android.webview
application from the device. The instructions require that you remove this application and delete its folder before the new APK is installed. I get an error message:
$ adb uninstall com.android.webview [DELETE_FAILED_INTERNAL_ERROR]
I wanted to ask if anyone knows how to resolve this. I saw a related question and want to ask if there is another approach that does what this one offers.
source share