- 作者
- baorunchen
- 日期
- 2020/3/18
- 注解
- is used by the JNI generator to create the necessary JNI bindings and expose this method to native code.
- Proguard Rules
-keep
class com.alivc.live.pusher.CalledByNative { *; }
-keep,allowobfuscation
interface com.alivc.live.pusher.CalledByNative
-keep @
com.alivc.live.pusher.CalledByNative class * {
*;
}
-keepclassmembers class * {
}
在文件 CalledByNative.java 第 38 行定义.