Rename module

This commit is contained in:
topjohnwu 2018-01-27 08:34:12 +08:00
parent 19af5f9e0b
commit b05d2d3a2d
5 changed files with 6 additions and 6 deletions

View File

@ -45,7 +45,7 @@ repositories {
dependencies { dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs') implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':crypto') implementation project(':utils')
implementation 'com.github.topjohnwu:libsu:1.0.0' implementation 'com.github.topjohnwu:libsu:1.0.0'
implementation 'com.android.support:recyclerview-v7:27.0.2' implementation 'com.android.support:recyclerview-v7:27.0.2'
implementation 'com.android.support:cardview-v7:27.0.2' implementation 'com.android.support:cardview-v7:27.0.2'

View File

@ -4,7 +4,7 @@ import android.app.Activity;
import android.app.ProgressDialog; import android.app.ProgressDialog;
import android.widget.Toast; import android.widget.Toast;
import com.topjohnwu.crypto.JarMap; import com.topjohnwu.utils.JarMap;
import com.topjohnwu.magisk.MagiskManager; import com.topjohnwu.magisk.MagiskManager;
import com.topjohnwu.magisk.R; import com.topjohnwu.magisk.R;
import com.topjohnwu.magisk.utils.Const; import com.topjohnwu.magisk.utils.Const;

View File

@ -7,7 +7,7 @@ import android.os.Build;
import android.text.TextUtils; import android.text.TextUtils;
import android.view.View; import android.view.View;
import com.topjohnwu.crypto.SignBoot; import com.topjohnwu.utils.SignBoot;
import com.topjohnwu.magisk.FlashActivity; import com.topjohnwu.magisk.FlashActivity;
import com.topjohnwu.magisk.MagiskManager; import com.topjohnwu.magisk.MagiskManager;
import com.topjohnwu.magisk.container.TarEntry; import com.topjohnwu.magisk.container.TarEntry;

View File

@ -2,7 +2,7 @@ package com.topjohnwu.magisk.utils;
import android.support.annotation.Keep; import android.support.annotation.Keep;
import com.topjohnwu.crypto.SignBoot; import com.topjohnwu.utils.SignBoot;
import java.io.FileInputStream; import java.io.FileInputStream;
import java.io.InputStream; import java.io.InputStream;

View File

@ -1,7 +1,7 @@
package com.topjohnwu.magisk.utils; package com.topjohnwu.magisk.utils;
import com.topjohnwu.crypto.JarMap; import com.topjohnwu.utils.JarMap;
import com.topjohnwu.crypto.SignAPK; import com.topjohnwu.utils.SignAPK;
import java.io.BufferedInputStream; import java.io.BufferedInputStream;
import java.io.BufferedOutputStream; import java.io.BufferedOutputStream;