forked from nining377/dolby_beta
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pyncmd源复活,更新该版请重新释放脚本并把代理源恢复默认以获得最佳体验
- Loading branch information
RainCat
committed
Jun 25, 2022
1 parent
bfac80f
commit fc89cbb
Showing
4 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
app/src/main/java/com/raincat/dolby_beta/utils/LogUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} |