exampleclient/ButtonPressHandler.java
Go to the documentation of this file.
1 package io.grpc.binder.cpp.exampleclient;
2 
3 import android.app.Application;
4 
5 public class ButtonPressHandler {
6  static {
7  System.loadLibrary("app");
8  }
9 
10  public native String native_entry(Application application);
11 
12  public String onPressed(Application application) {
13  return native_entry(application);
14  }
15 }
io.grpc.binder.cpp.exampleclient.ButtonPressHandler.onPressed
String onPressed(Application application)
Definition: exampleclient/ButtonPressHandler.java:12
io.grpc.binder.cpp.exampleclient.ButtonPressHandler.native_entry
native String native_entry(Application application)
io.grpc.binder.cpp.exampleclient.ButtonPressHandler
Definition: exampleclient/ButtonPressHandler.java:5


grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:58:41