30 lines
659 B
Prolog
30 lines
659 B
Prolog
|
|
#tinker multidex keep patterns:
|
|
-keep public class * implements com.tencent.tinker.loader.app.ApplicationLifeCycle {
|
|
<init>(...);
|
|
void onBaseContextAttached(android.content.Context);
|
|
}
|
|
|
|
-keep public class * extends com.tencent.tinker.loader.TinkerLoader {
|
|
<init>(...);
|
|
}
|
|
|
|
-keep public class * extends android.app.Application {
|
|
<init>();
|
|
void attachBaseContext(android.content.Context);
|
|
}
|
|
|
|
-keep class com.tencent.tinker.loader.TinkerTestAndroidNClassLoader {
|
|
<init>(...);
|
|
}
|
|
|
|
#your dex.loader patterns here
|
|
-keep class com.tencent.tinker.loader.** {
|
|
<init>(...);
|
|
}
|
|
|
|
-keep class com.halo.assistant.TinkerApp {
|
|
<init>(...);
|
|
}
|
|
|