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