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
372 B
15 lines
372 B
class Config {
|
|
///包名
|
|
static const String packageName = 'cloud_car';
|
|
|
|
///打包目录
|
|
static String get buildPath =>
|
|
'./build/app/outputs/flutter-apk/app-release.apk';
|
|
|
|
///测试包文件夹
|
|
static String get apkDevDir => '../team/cloud_car_internal/dev';
|
|
|
|
///正式包文件夹
|
|
static String get apkDir => '../team/cloud_car_internal/release';
|
|
}
|