https://github.com/i-e-b/minitwins
An experimental service and front-end for Android, focusing on minimal APK size
https://github.com/i-e-b/minitwins
Last synced: about 2 months ago
JSON representation
An experimental service and front-end for Android, focusing on minimal APK size
- Host: GitHub
- URL: https://github.com/i-e-b/minitwins
- Owner: i-e-b
- License: bsd-3-clause
- Created: 2022-11-03T15:29:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-06T13:58:38.000Z (over 3 years ago)
- Last Synced: 2025-03-22T12:30:30.906Z (over 1 year ago)
- Language: Java
- Size: 109 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MiniTwins
An experimental service and front-end for Android, focusing on minimal APK size
## Purpose
This experiment is trying to set up a very minimal front-end which contains a basic renderer and all the 'business logic' of the app, with a back-end service that stores data, does fundamental work etc.
This is to allow 2 things:
1. Very small APK download when updating business logic
2. Harder for users to accidentally lose data when uninstalling apps
## Plugins
Concept: a small APK, which will be stored or downloaded. This will have a standard file
somewhere inside it, and we will use that to load Dalvik classes and run them.
### Link spam
https://www.techotopia.com/index.php/Android_Remote_Bound_Services_%E2%80%93_A_Worked_Example
https://developer.android.com/guide/topics/manifest/service-element.html#proc
https://stackoverflow.com/questions/39728597/android-binding-to-a-remote-service
https://www.dev2qa.com/android-content-provider-and-contentresolver-example/
https://developer.android.com/guide/components/bound-services
https://android.googlesource.com/platform/development/+/master/samples/ApiDemos/src/com/example/android/apis/app/MessengerService.java
https://android.googlesource.com/platform/development/+/master/samples/ApiDemos/src/com/example/android/apis/app/MessengerServiceActivities.java
https://www.programmerall.com/article/83611057030/