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
465 B

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