1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.everyday.word.utils;
|
| /**
| * @author hxh
| * @title: Constant
| * @description: 常量
| * @date 2025/2/11 15:18
| */
| public class Constant {
| public final static boolean IS_TEST = false;
| public final static String PLATEFORM_ANDROID = "android";
| public final static String PLATEFORM_IOS = "ios";
| }
|
|