You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
508 B

class Config {
///用户根目录
3 years ago
static const String homeDir = '/users/zhangmeng';
///包名
3 years ago
static const String packageName = 'aku_new_community';
///打包目录
static String get buildPath =>
'./build/app/outputs/flutter-apk/app-release.apk';
///测试包文件夹
static String get apkDevDir =>
3 years ago
'/users/zhangmeng/team/bee/app/aku_new_community/dev';
///正式包文件夹
static String get apkDir =>
3 years ago
'/users/zhangmeng/team/bee/app/aku_new_community/release';
}