我正在尝试使用cordova构建APK。 我开始做:
endkey
然后我用了:
$ curl -k -X GET 'https://admin:admin@192.168.1.106:6984/sample/_design/by_date/_view/by_date?startkey="2013"&endkey="2015"'
{"total_rows":6,"offset":2,"rows":[
{"id":"sale0001","key":"2013-05-20 00:00:00","value":[12,1]},
{"id":"sale0002","key":"2014-09-15 00:00:00","value":[14,1]}
]}
给出了这个输出: 检测到Android Studio项目
1) sudo npm install -g cordova
2) cordova create app com.example.hello app
3) cordova platform add android
最后我用:
cordova requirements
结果如下:
Requirements check results for android:
Java JDK: installed 1.8.0
Android SDK: installed true
Android target: not installed
android: Command failed with exit code ENOENT
Gradle: installed /usr/share/gradle/bin/gradle
(node:27773) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Some of requirements check failed
我完全迷失了。任何帮助将不胜感激!
答案 0 :(得分:2)
打开Android Studio。转到首选项 - >外观和行为 - >系统设置 - > Android SDK。
在SDK平台选项卡中,下载适用于Android 8.0的SDK平台(API级别26),然后在SDK工具选项卡中下载Android SDK平台 - 工具版本26.0.2。
然后尝试使用cordova构建。