| OLD | NEW |
| 1 # Android Build Instructions | 1 # Android Build Instructions |
| 2 | 2 |
| 3 [TOC] | 3 [TOC] |
| 4 | 4 |
| 5 ## Prerequisites | 5 ## Prerequisites |
| 6 | 6 |
| 7 A Linux build machine capable of building [Chrome for | 7 A Linux build machine capable of building [Chrome for |
| 8 Linux](https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_
instructions_prerequisites.md). | 8 Linux](https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_
instructions_prerequisites.md). |
| 9 Other (Mac/Windows) platforms are not supported for Android. | 9 Other (Mac/Windows) platforms are not supported for Android. |
| 10 | 10 |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 To uninstall: | 334 To uninstall: |
| 335 | 335 |
| 336 ```shell | 336 ```shell |
| 337 out/Default/bin/install_chrome_public_apk_incremental -v --uninstall | 337 out/Default/bin/install_chrome_public_apk_incremental -v --uninstall |
| 338 ``` | 338 ``` |
| 339 | 339 |
| 340 ### Miscellaneous | 340 ### Miscellaneous |
| 341 | 341 |
| 342 #### Rebuilding libchrome.so for a particular release | 342 #### Rebuilding libchrome.so for a particular release |
| 343 | 343 |
| 344 These instructions are only necessary for Chrome 51 and earlier. |
| 345 |
| 344 In the case where you want to modify the native code for an existing | 346 In the case where you want to modify the native code for an existing |
| 345 release of Chrome for Android (v25+) you can do the following steps. | 347 release of Chrome for Android (v25+) you can do the following steps. |
| 346 Note that in order to get your changes into the official release, you'll | 348 Note that in order to get your changes into the official release, you'll |
| 347 need to send your change for a codereview using the regular process for | 349 need to send your change for a codereview using the regular process for |
| 348 committing code to chromium. | 350 committing code to chromium. |
| 349 | 351 |
| 350 1. Open Chrome on your Android device and visit chrome://version | 352 1. Open Chrome on your Android device and visit chrome://version |
| 351 2. Copy down the id listed next to "Build ID:" | 353 2. Copy down the id listed next to "Build ID:" |
| 352 3. Go to | 354 3. Go to |
| 353 [http://storage.googleapis.com/chrome-browser-components/BUILD\_ID\_FROM\_ST
EP\_2/index.html](http://storage.googleapis.com/chrome-browser-components/BUILD_
ID_FROM_STEP_2/index.html) | 355 [http://storage.googleapis.com/chrome-browser-components/BUILD\_ID\_FROM\_ST
EP\_2/index.html](http://storage.googleapis.com/chrome-browser-components/BUILD_
ID_FROM_STEP_2/index.html) |
| 354 4. Download the listed files and follow the steps in the README. | 356 4. Download the listed files and follow the steps in the README. |
| OLD | NEW |