wjc
2023-03-30 c5451371d006652b8c7a5da8c3ca7525d7b39fef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package ezviz.ezopensdkcommon.demo;
 
import android.os.Environment;
 
import ezviz.ezopensdkcommon.common.BaseApplication;
 
public class DemoConfig {
 
    /**
     * 是否打开调试页面
     */
    public static final boolean isNeedJumpToTestPage = false;
 
    /**
     * 文件保存位置
     */
    private static final String DEMO_FOLDER = BaseApplication.mInstance.getExternalCacheDir() + "/0_OpenSDK";
 
    public static String getDemoFolder(){
        return DEMO_FOLDER;
    }
 
    public static String getRecordsFolder(){
        return DEMO_FOLDER + "/Records";
    }
 
    public static String getCapturesFolder(){
        return DEMO_FOLDER + "/Captures";
    }
 
    public static String getStreamsFolder(){
        return DEMO_FOLDER + "/Streams";
    }
 
}