Skip to content

Commit

Permalink
add diycard path
Browse files Browse the repository at this point in the history
  • Loading branch information
KyuubiRan committed Nov 12, 2020
1 parent 8c077e7 commit 092fd7d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "me.kyuubiran.qqcleaner"
minSdkVersion 21
targetSdkVersion 30
versionCode 5
versionName "0.5"
versionCode 6
versionName "0.6"
}

buildTypes {
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/java/me/kyuubiran/qqcleaner/MainHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ public void run() {
filesDir.add(new File(TencentDir + "/mini"));
//网页登录缓存
filesDir.add(new File(rootTencentDir + "/msflogs/com/tencent/mobileqq"));
//名片缓存
filesDir.add(new File((MobileQQ + "/.apollo")));

if (cleanAll) {
//字体
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/java/me/kyuubiran/qqcleaner/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import de.robv.android.xposed.XposedBridge;

//笨比的我不会造轮子从QNotified那里掏过来的
//from QNotified
public class Utils {
public static Field findField(Class<?> clazz, Class<?> type, String name) {
if (clazz != null && name.length() > 0) {
Expand Down Expand Up @@ -151,5 +151,4 @@ public static void deleteAllFiles(File file) {
file.delete();
}
}

}

0 comments on commit 092fd7d

Please sign in to comment.