快應(yīng)用的項(xiàng)目配置信息
本課程的大綱
- 配置應(yīng)用基本信息
- 配置頁面路由
- 配置頁面UI顯示
mainfest.json 基本信息
{
# 應(yīng)用包名或者應(yīng)用的唯一ID
"package": "com.devislee.gankio",
# 應(yīng)用名稱(6個(gè)字以內(nèi)的漢字)
"name": "gankio",
# 版本名稱 主版本.次版本 格式
"versionName": "1.0.0",
# 版本號(hào) 為整數(shù)谋逻,從1開始璃赡,每次更新上架請(qǐng)自增1
"versionCode": "1",
# 最低支持的android系統(tǒng)版本
"minPlatformVersion": "101",
# 應(yīng)用的圖標(biāo)先壕,用絕對(duì)路徑 / 對(duì)應(yīng)于路徑<ProjectName>/src/
"icon": "/Common/icon.png",
# 引入的系統(tǒng)的native 接口
"features": [
{ "name": "system.webview" },
{ "name": "system.prompt" },
{ "name": "system.device" },
{ "name": "system.fetch" },
{ "name": "system.file" },
{ "name": "system.geolocation" },
{ "name": "system.media" },
{ "name": "system.notification" },
{ "name": "system.barcode" },
{ "name": "system.sensor" },
{ "name": "system.share" },
{ "name": "system.shortcut" },
{ "name": "system.storage" },
{ "name": "system.network" },
{ "name": "system.request" }
],
# 限制的控制
"permissions": [
{ "origin": "*" }
],
# 調(diào)試的打印日記的level
"config": {
"logLevel": "debug"
},
# 路由頁面
"router": {
"entry": "Home", # 應(yīng)用的入口頁面
"pages": {
"Home": {
"component": "index"
},
"About": {
"component": "index"
},
"Web": {
"component": "index"
},
"Doc/Layout": {
"component": "index"
}
}
},
# 顯示的設(shè)置
"display": {
"titleBarBackgroundColor": "#000000",
"titleBarTextColor": "#ffffff",
"backgroundColor": "#efefef",
"menu": true, #菜單欄是否顯示
"pages": { # 對(duì)應(yīng)每個(gè)頁面的顯示設(shè)置
"Home": {
"titleBarText": "Gank",
"menu": true
},
"About": {
"titleBarText": "關(guān)于",
"menu": false
}
}
}
}