|
@@ -265,10 +265,10 @@ public class TestUtil {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
public static boolean isSheep(){
|
|
public static boolean isSheep(){
|
|
|
- return TextUtils.equals("sheep", BuildConfig.FLAVOR) && !BuildConfig.DEBUG;
|
|
|
|
|
|
|
+ return true;//TextUtils.equals("sheep", BuildConfig.FLAVOR) && !BuildConfig.DEBUG;
|
|
|
}
|
|
}
|
|
|
public static boolean isTest(){
|
|
public static boolean isTest(){
|
|
|
- return BuildConfig.DEBUG || !"sheep".equals(BuildConfig.FLAVOR);
|
|
|
|
|
|
|
+ return false;//BuildConfig.DEBUG || !"sheep".equals(BuildConfig.FLAVOR);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|