l3ger0j / Questopia

Android fork port of Quest Soft Player
Apache License 2.0
16 stars 2 forks source link
android java qsp

Questopia android-test android-build

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)

Disclaimer

This fork was made WhoYouAndM3. The original project (hereinafter QuestPlayer) with an no license does not bear any responsibility for this fork Questopia.

Thanks

Links to official communities

Official Telegram chat Official Telegram channel

How to use the Plugin API

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!