This article shows you how to bypass DMCA blockblist in lbry-android.
Clone of fork lbry-android:
git clone https://github.com/lbryio/lbry-android
Use Android Studio to open the project. (https://developer.android.com/studio)
Open this file by using Android Studio:
app/src/main/java/io/lbry/browser/MainActivity.java
Search this line:
JSONArray blockedArray = blockedObject.getJSONArray("outpoints");
and change to this:
JSONArray blockedArray = new JSONArray();
Search this line:
JSONArray filteredArray = filteredObject.getJSONArray("outpoints");
and change to this:
JSONArray filteredArray = new JSONArray();
Follow the instruction in the readme file to create a dummy twitter key file; just put some random numbers on it, or you can make a real one if you have your own twitter developer key:
https://github.com/lbryio/lbry-android#readme
Rename this file:
app/google-services.sample.json
to this:
app/google-services.json
or you can use this as an example to create your own google service file if you have google service keys.
Save your change, then generate your signed APK, and copy to your Android phone.