HiddenApiRefinePlugin
A Gradle plugin that improves the experience when developing Android apps, especially system tools, that use hidden APIs.
When developing system tools, it's inevitable to use hidden APIs. There are two ways to use hidden APIs, the reflection way and the linking way. For some types of system tools, a large amount of hidden APIs is required, using the reflection way is too inconvenient. So the linking way is commonly used in those projects.
In short, the linking way is to create Java-only modules with stub classes and then compileOnly
them in the main Android modules. This is the same as what Android SDK's android.jar
does.
However, the linking way, or "the stub way", have some problems:
- "Bridge classes" is required if only some members of the class are hidden.
- Kotlin will try to link public classes from the stub module,
implementation
a second Java-only whichcompileOnly
the stub module can workaround the problem. - Interface implementation will be removed by R8 if the stub module is not
compileOnly
directly from the main module, however doing this will bring back problem 2.
This plugin is to solve these problems.
This plugin uses the Transform API of the Android Gradle Plugin to create a transform that modifies class names, the names are user specified by annotation @RefineAs
. So that all the problems will be gone and the stub module does not need to be a Java-only module.
The idea and the implementation is from @Kr328.
Replace all the <version>
below with the version shows here.
Create "hidden-api" module
-
Create a new Android library module
-
Add annotation dependency
dependencies { annotationProcessor 'dev.rikka.tools.refine:annotation-processor:<version>' compileOnly 'dev.rikka.tools.refine:annotation:<version>' }
-
Add the hidden classes
Here, we use a hidden
PackageManager
API as the example.package android.content.pm; import dev.rikka.tools.refine.RefineAs; @RefineAs(PackageManager.class) public class PackageManagerHidden { public interface OnPermissionsChangedListener { void onPermissionsChanged(int uid); } public void addOnPermissionsChangeListener(OnPermissionsChangedListener listener) { throw new RuntimeException("Stub!"); } public void removeOnPermissionsChangeListener(OnPermissionsChangedListener listener) { throw new RuntimeException("Stub!"); } }
This line
@RefineAs(PackageManager.class)
will let the plugin renamesandroid.app.PackageManagerHidden
/android.app.PackageManagerHidden.OnPermissionsChangedListener
toandroid.app.PackageManager
/android.app.PackageManager.OnPermissionsChangedListener
.
Use hidden API
-
Apply this plugin in the final Android application module
plugins { id('dev.rikka.tools.refine') version '<version>' }
If your project includes mulitple modules, you need to apply this plugin to all the module that uses hidden APIs.
There is a convenient way to do this, add this to your root
build.gradle
:subprojects { plugins.withId("com.android.base") { plugins.apply('dev.rikka.tools.refine') } }
-
Import "hidden-api" module with
compileOnly
dependencies { compileOnly project(':hidden-api') }
-
Import the "Refine" class (Optional, if you don't need the "unsafeCast" method)
dependencies { implementation("dev.rikka.tools.refine:runtime:<version>") }
-
Use the hidden API
Refine.<PackageManagerHidden>unsafeCast(context.getPackageManager()) .addOnPermissionsChangeListener(new PackageManagerHidden.OnPermissionsChangedListener() { @Override public void onPermissionsChanged(int uid) { // do staff } });
After R8, this "cast" will be "removed" or "inlined". This line will be identical to a normal method call.