This commit is contained in:
wangcongtao
2021-02-23 16:24:56 +08:00
parent 4de208026a
commit 3f6400b0bc
3 changed files with 14 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
package com.mogo.commons.debug;
import android.text.TextUtils;
/**
* @author congtaowang
* @since 2019-12-23
@@ -413,4 +415,8 @@ public class DebugConfig {
public static void setNotSmooth( boolean sIsNotSmooth ) {
DebugConfig.sIsNotSmooth = sIsNotSmooth;
}
public static boolean isOCHModule(){
return sProductFlavor != null && sProductFlavor.startsWith( "foch" );
}
}