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.
30 lines
744 B
30 lines
744 B
class Config {
|
|
///用户根目录
|
|
static const homeDir = '/Users/datang';
|
|
|
|
///签名密码
|
|
static const recookPassword = 'recook';
|
|
|
|
/// 签名目录
|
|
static const keystorePath = './jks/recook.keystore';
|
|
|
|
///包名
|
|
static const packageName = 'RECOOK';
|
|
|
|
///Android SDK 目录
|
|
static String get androidSdkRoot => '$homeDir/Library/Android/sdk';
|
|
|
|
///Apksigner 目录
|
|
static String get apksignerPath =>
|
|
'$androidSdkRoot/build-tools/30.0.3/apksigner';
|
|
|
|
///下载目录
|
|
static String get downloadPath => '$homeDir/Downloads';
|
|
|
|
///打包目录
|
|
static String get buildPath => './build/app/outputs/flutter-apk/app.apk';
|
|
|
|
///打包目录文件夹
|
|
static String get buildDir => './build/app/outputs/flutter-apk';
|
|
}
|