(String title, String body)
| 5 | |
| 6 | public class Notifications { |
| 7 | public static void notify(String title, String body) { |
| 8 | assert App._onUIThread() : "Should be run on UI thread";; |
| 9 | throw new UnsupportedOperationException("Not implemented yet"); |
| 10 | } |
| 11 | |
| 12 | @ApiStatus.Internal public static native void _nNotify(String title, String body); |
| 13 | } |
nothing calls this directly
no test coverage detected