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.
15 lines
360 B
15 lines
360 B
3 years ago
|
class Config {
|
||
|
///用户根目录
|
||
|
static const String homeDir = '/users/zhangmeng';
|
||
|
|
||
|
///包名
|
||
|
static const String packageName = 'aku_community';
|
||
|
|
||
|
///打包目录
|
||
|
static String get buildPath =>
|
||
|
'./build/app/outputs/flutter-apk/app-release.apk';
|
||
|
|
||
|
///打包目录文件夹
|
||
|
static String get buildDir => './build/app/outputs/flutter-apk';
|
||
|
}
|