美文网首页
aidl 生成文件分析

aidl 生成文件分析

作者: fsdffdaga | 来源:发表于2022-05-30 22:41 被阅读0次
    public interface ICustomInterceptApkListener extends IInterface {
        String DESCRIPTOR = "com.custom.app.sun.ICustomInterceptApkListener";
    
        void requestIntercept(Intent var1) throws RemoteException;
    
        public abstract static class Stub extends Binder implements ICustomInterceptApkListener {
            public Stub() {
                throw new RuntimeException("Stub!");
            }
    
            public static ICustomInterceptApkListener asInterface(IBinder obj) {
                throw new RuntimeException("Stub!");
            }
    
            public IBinder asBinder() {
                throw new RuntimeException("Stub!");
            }
    
            public boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException {
                throw new RuntimeException("Stub!");
            }
        }
    
        public static class Default implements ICustomInterceptApkListener{
            public Default() {
                throw new RuntimeException("Stub!");
            }
    
            public void requestIntercept(Intent intent) throws RemoteException {
                throw new RuntimeException("Stub!");
            }
    
            public IBinder asBinder() {
                throw new RuntimeException("Stub!");
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:aidl 生成文件分析

          本文链接:https://www.haomeiwen.com/subject/rueaprtx.html