Skip to content

Commit

Permalink
fix(cli): 快应用 manifest 的 versioncode和minPlatformVersion必须是整型 (#4318)
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiyu8 authored and luckyadam committed Aug 30, 2019
1 parent 3cb94b0 commit 0a7bd5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/taro-cli/src/config/manifest.default.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"package": "com.application.demo",
"name": "TaroQuickApp",
"versionName": "1.0.0",
"versionCode": "1",
"minPlatformVersion": "101",
"versionCode": 1,
"minPlatformVersion": 1040,
"features": [
{ "name": "system.prompt" },
{ "name": "system.router" },
Expand Down

0 comments on commit 0a7bd5e

Please sign in to comment.