Merge "Add hwbinder library" am: 49e2a9a612

am: 811027ede7

Change-Id: Idec0d080a65d96ff866969f47e9902e40e800fdf
This commit is contained in:
Sundong Ahn
2017-08-02 17:05:56 +00:00
committed by android-build-merger
3 changed files with 44 additions and 0 deletions

View File

@@ -71,4 +71,13 @@ public abstract class HwBinder implements IHwBinder {
}
private long mNativeContext;
private static native void native_report_sysprop_change();
/**
* Notifies listeners that a system property has changed
*/
public static void reportSyspropChanged() {
native_report_sysprop_change();
}
}