Xingwang Liao

Results 101 comments of Xingwang Liao

Use ```bash ./sync_chromium.sh``` or ```./sync_chromium.sh```

It means the Chromium source changed, you need to modify the script.

Delete this line: ``` ${BASE_DIR}/third_party/android_async_task/java/src/* \ ``` and try agin.

The sync script in the repo is only for the project version. Current is 70.0.3538.118. If you want to use it in other version. you need to update the script...

``` cd src/native_client git fetch origin 9a87d6b9de35325efb08321640879e79ed0dfcc9 git checkout 9a87d6b9de35325efb08321640879e79ed0dfcc9 cd - gclient sync ```

Go to https://chromium.googlesource.com/chromium/src/+refs and choose a tag you want. ``` git fetch --depth 5 origin +refs/tags/#tag:#tag git checkout #tag gclient sync ``` Then: ``` gn gen --args='target_os="android"' out/Default cd out/Default...

https://github.com/kuoruan/Chromium-Android/issues/32#issuecomment-446973880

It' a bug of gclient script (maybe?). If you sync error, just go to the dir in the error log. Run ```git fetch origin #hash && git checkout #hash```. Then...

I'm working with Chromium 71, If this can solve the issue, I will remove it in next update.

[NativeLibraries.java](https://github.com/kuoruan/Chromium-Android/blob/master/app/src/main/java/org/chromium/base/library_loader/NativeLibraries.java) defines the library files load when app initialize. If app crash with ```Failed to load native library```, I will check this file. but I don't know the ```FileDescriptor must...