Written in a comment in index.html
Written in a comment in index.html
| // ==UserScript== | |
| // @name Flashpoint Browser expand all | |
| // @namespace https://greasyfork.org/en/users/436563-bbb651 | |
| // @match https://nul.sh/misc/flashpoint/ | |
| // @grant none | |
| // @version 1.0 | |
| // @author Bar Yemini | |
| // @description Expands all games in view to easily see and recognize them by their image. | |
| // @license MIT | |
| // ==/UserScript== |
| #!/bin/bash | |
| # Get package id from build.gradle | |
| package=$(grep "applicationId" app/build.gradle | cut -d '"' -f 2) | |
| # Build app, exit if fails | |
| ./gradlew assemble || exit 1 | |
| # Install app in waydroid | |
| waydroid app install app/build/outputs/apk/debug/app-debug.apk |