Skip to content

Testing on Android

Mat Kelly edited this page Dec 16, 2021 · 3 revisions

In #602 I put together a way to build and run ipwb on Android. This wiki page serves as documentation on how to replicate that for future reference.

Using Termux:

  • install ipfs 0.4.21, python 3.7.4, and git 2.22.0 via pkg install
  • install clang 8.0.0 via pkg install, required for pycryptodome module used in ipwb
  • git clone https://github.com/oduwsdl/ipwb; cd ipwb; pip install -r requirements.txt; pip install .
  • ipfs init; ipfs daemon &
  • ipwb index samples/warcs/5mementos.warc

This was a bit easier to replicate once setting up my authorized_keys and sshing into an Android device instead of using an on-screen keyboard.

Note that sshd in Termux uses port 8022 by default, so ssh -p 8022 (ip) from desktop after running sshd in Termux.

Clone this wiki locally