ionic build android报错
Error: /Users/pengting/iOS/my_mobile_app/platforms/android/gradlew: Command failed with exit code 1 Error output:
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring root project 'android'.
> You have not accepted the license agreements of the following SDK components:
[SDK Patch Applier v4, Google Repository, Android Support Repository].
Before building your project, you need to accept the license agreements and complete the installation of the missing components using the Android Studio SDK Manager.
Alternatively, to learn how to transfer the license agreements from one workstation to another, go to http://d.android.com/r/studio-ui/export-licenses.html
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
出现这个问题,首先看到的是SDK Patch Applier v4, Google Repository, Android Support Repository
是没有安装完整的问题
搜了下google
通过命令
android update sdk –no-ui –filter build-tools-24.0.0,android-24,extra-android-m2repository
echo y | android update sdk –no-ui –all –filter “extra-google-m2repository”
解决了此问题