An app to read plain text files on Android. plaintext doesn't have an intent filter for launchers, so it won't appear in your launcher app. It gets launched by other apps.
- Saves reading position locally
- Requires no permissions
- Small app (< 32 KB)
- No third-party runtime dependencies
Run the following command from the root of the repository to make a debug build:
./gradlew assembleDebug
Making a release build is similar, but requires environment variables to be set to indicate how to sign the APK:
STORE_FILE='...' STORE_PASSWORD='...' KEY_ALIAS='...' KEY_PASSWORD='...' ./gradlew assembleRelease