Framework SDK
The Mason Framework SDK is designed to give your app privileged abilities on Mason OS.
Releases
Usage
The main interface for utilizing the Mason Framework is the MasonFramework
class, which provides MasonFramework#get(Context, Class)
to retrieve a feature vertical API.
An example of retrieving the WindowManagerPrivileged API can be seen below:
WindowManagerPrivileged windowManagerPrivileged = MasonFramework.get(context, WindowManagerPrivileged.class);
From here, you can invoke whatever the given interface provides.
tip
Visit our installation guide to get up and running.