An open API service indexing awesome lists of open source software.

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

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/