Skip to content

Commit

Permalink
pyncmd源复活,更新该版请重新释放脚本并把代理源恢复默认以获得最佳体验
Browse files Browse the repository at this point in the history
  • Loading branch information
RainCat committed Jun 25, 2022
1 parent bfac80f commit fc89cbb
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.raincat.dolby_beta"
minSdkVersion 21
targetSdkVersion 29
versionCode 352
versionName "3.5.2"
versionCode 353
versionName "3.5.3"

ndk {
abiFilters "arm64-v8a"
Expand Down Expand Up @@ -54,10 +54,10 @@ dependencies {
//xposed库
compileOnly 'de.robv.android.xposed:api:82'
compileOnly 'de.robv.android.xposed:api:82:sources'
implementation 'com.annimon:stream:1.2.1'
implementation 'com.annimon:stream:1.2.2'
implementation 'org.smali:dexlib2:2.3.4'
implementation 'com.google.guava:guava:28.2-android'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.google.code.gson:gson:2.8.9'

implementation project(':hotxposed')
}
Binary file modified app/src/main/assets/UnblockNeteaseMusic.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public class SettingHelper {

public static final String proxy_original_key = "β_proxy_original_key";
public static final String proxy_original_title = "代理源(空格隔开)";
public static final String proxy_original_default = "kuwo qq kugou";
public static final String proxy_original_default = "kuwo pyncmd";

public static final String proxy_cover_key = "β_proxy_cover_key";
public static final String proxy_cover_title = "重新释放脚本";
Expand Down
22 changes: 22 additions & 0 deletions app/src/main/java/com/raincat/dolby_beta/utils/LogUtils.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package com.raincat.dolby_beta.utils;

import com.raincat.dolby_beta.BuildConfig;

import de.robv.android.xposed.XposedBridge;

/**
* <pre>
* author : RainCat
* e-mail : [email protected]
* time : 2022/06/25
* desc : 日志
* version: 1.0
* </pre>
*/

public class LogUtils {
public static void log(String text) {
if (BuildConfig.DEBUG)
XposedBridge.log(text);
}
}

0 comments on commit fc89cbb

Please sign in to comment.