Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.alibaba.android.arouter.facade.template;
import com.alibaba.android.arouter.facade.Postcard;
import com.alibaba.android.arouter.facade.callback.InterceptorCallback;
/* loaded from: classes.dex */
public interface IInterceptor extends IProvider {
void b(Postcard postcard, InterceptorCallback interceptorCallback);
}

View File

@@ -0,0 +1,8 @@
package com.alibaba.android.arouter.facade.template;
import java.util.Map;
/* loaded from: classes.dex */
public interface IInterceptorGroup {
void loadInto(Map<Integer, Class<? extends IInterceptor>> map);
}

View File

@@ -0,0 +1,12 @@
package com.alibaba.android.arouter.facade.template;
/* loaded from: classes.dex */
public interface ILogger {
void a(String str, String str2);
void b(String str, String str2);
void c(String str, String str2);
void d(String str, String str2);
}

View File

@@ -0,0 +1,8 @@
package com.alibaba.android.arouter.facade.template;
import android.content.Context;
/* loaded from: classes.dex */
public interface IProvider {
void init(Context context);
}

View File

@@ -0,0 +1,9 @@
package com.alibaba.android.arouter.facade.template;
import com.alibaba.android.arouter.facade.model.RouteMeta;
import java.util.Map;
/* loaded from: classes.dex */
public interface IProviderGroup {
void loadInto(Map<String, RouteMeta> map);
}

View File

@@ -0,0 +1,9 @@
package com.alibaba.android.arouter.facade.template;
import com.alibaba.android.arouter.facade.model.RouteMeta;
import java.util.Map;
/* loaded from: classes.dex */
public interface IRouteGroup {
void loadInto(Map<String, RouteMeta> map);
}

View File

@@ -0,0 +1,8 @@
package com.alibaba.android.arouter.facade.template;
import java.util.Map;
/* loaded from: classes.dex */
public interface IRouteRoot {
void loadInto(Map<String, Class<? extends IRouteGroup>> map);
}

View File

@@ -0,0 +1,6 @@
package com.alibaba.android.arouter.facade.template;
/* loaded from: classes.dex */
public interface ISyringe {
void inject(Object obj);
}