Separate core components

This commit is contained in:
topjohnwu
2020-01-13 22:01:46 +08:00
parent ba1a2fbce4
commit 707d7b3342
134 changed files with 742 additions and 693 deletions

View File

@@ -1,6 +1,6 @@
package a;
import com.topjohnwu.magisk.utils.PatchAPK;
import com.topjohnwu.magisk.core.utils.PatchAPK;
import com.topjohnwu.signing.BootSigner;
public class a {

View File

@@ -1,6 +1,6 @@
package a;
import com.topjohnwu.magisk.ui.SplashActivity;
import com.topjohnwu.magisk.core.SplashActivity;
public class c extends SplashActivity {
/* stub */

View File

@@ -1,6 +1,6 @@
package a;
import com.topjohnwu.magisk.App;
import com.topjohnwu.magisk.core.App;
public class e extends App {
public e() {

View File

@@ -5,7 +5,7 @@ import android.content.Context;
import androidx.annotation.NonNull;
import androidx.work.WorkerParameters;
import com.topjohnwu.magisk.model.update.UpdateCheckService;
import com.topjohnwu.magisk.core.UpdateCheckService;
public class g extends w<UpdateCheckService> {
/* Stub */

View File

@@ -1,6 +1,6 @@
package a;
import com.topjohnwu.magisk.model.receiver.GeneralReceiver;
import com.topjohnwu.magisk.core.GeneralReceiver;
public class h extends GeneralReceiver {
/* stub */

View File

@@ -1,6 +1,6 @@
package a;
import com.topjohnwu.magisk.model.download.DownloadService;
import com.topjohnwu.magisk.core.download.DownloadService;
public class j extends DownloadService {
/* stub */

View File

@@ -6,11 +6,11 @@ import androidx.annotation.NonNull;
import androidx.work.Worker;
import androidx.work.WorkerParameters;
import com.topjohnwu.magisk.base.DelegateWorker;
import com.topjohnwu.magisk.core.base.BaseWorkerWrapper;
import java.lang.reflect.ParameterizedType;
public abstract class w<T extends DelegateWorker> extends Worker {
public abstract class w<T extends BaseWorkerWrapper> extends Worker {
/* Wrapper class to workaround Proguard -keep class * extends Worker */