Browse Source

add README.md

liuyuqi-dellpc 2 years ago
parent
commit
ec8049350e
1 changed files with 52 additions and 0 deletions
  1. 52 0
      README.md

+ 52 - 0
README.md

@@ -0,0 +1,52 @@
+## nativescript-demo
+
+nativescript类似于uniap,Convorda,实现 js+html 开发,打包为apk,ios等应用。
+
+## Usage
+
+```
+
+# Install dependencies
+npm install
+
+# Build for production
+tns build <platform> --bundle
+
+# Build, watch for changes and debug the application
+tns debug <platform> --bundle
+
+# Build, watch for changes and run the application
+
+```
+
+npm install nativescript@6.5.1 -g
+npm remove -g nativescript
+
+ns create demo1 --appid "me.yoqi.nativescript.demo1"
+
+ns run android
+ns run <platform> --bundle
+
+ns build android
+
+
+
+## 安装插件
+
+
+tns plugin add nativescript-geolocation
+
+使用:
+
+var geolocation=require("nativescript-geolocation")
+
+
+程序入口:
+
+  "main": "app/app.js",
+  
+
+
+
+
+