Skip to content

Releases: 7723mod/NPatch-Remote-API

NPatch Remote API 1.0.0

Choose a tag to compare

@HSSkyBoy HSSkyBoy released this 31 Jul 11:27

NPatch Remote API 1.0.0

A lightweight Remote Store client that lets an Xposed module app (its settings UI) securely read and write Remote Preferences and Remote Files stored by NPatch Manager in Local mode. Data is isolated by module package.

Features

  • Obtains the standard libxposed API 102 IXposedService through an authenticated ContentProvider
  • Remote Preferences: SharedPreferences-compatible read/write, supporting Boolean / Int / Long / Float / String / Set<String>
  • Remote Files: openRemoteFile / listRemoteFiles / deleteRemoteFile
  • Synchronous and asynchronous connect, plus custom Manager authority support
  • Requires Android API 28 (Android 9) or higher

Usage

Integration guide and API reference: NPatch Remote API Developer Guide

dependencies {
    implementation(files("libs/npatch-remote-api-v1.0.0-release.aar"))
    implementation("io.github.libxposed:interface:102.0.0")
}