Android application for launching text format games QSP
Text game launchers of a similar format, but from other authors:
Desktop
QSP from seedHarta (last commit on 01/22/2020)
QSP from Sonnix (last commit from 09/06/2019)
QSP from Byte (last commit 03/15/2024)
This fork was made WhoYouAndM3. The original project (hereinafter QuestPlayer) with an no license does not bear any responsibility for this fork Questopia.
- Nikolai Reznik for creating a PrettyFilePicker.
Official Telegram chat Official Telegram channel
At the moment, the Plugin API is still in development! Therefore, in order for your plugin to work successfully with my application, you will need to contact me.
To get started, you will need to create an AIDL interface, be sure to place it on the path "org.qp.android.plugin". Next, you need to fill in this file with the following information:
interface yourInterfaceName {
String versionPlugin();
String titlePlugin();
String authorPlugin();
}
Don't forget to return your AIDL interface with the Stub() parameter in the service class, in the onBind method, and initialize the values, and the framework of your plugin for the application is ready!