您的位置:首页 > 其它

解决Minimum supported Gradle version is 3.3. Current version is 2.14.1问题

2018-01-31 22:09 423 查看
http://blog.csdn.net/juladoe/article/details/644374411.解决Minimum supported Gradle version is 3.3. Current version is 2.14.1问题 http://blog.csdn.net/juladoe/article/details/64437441 2. 问题:FAILURE: Build failed with an exception.* What went wrong:A problem occurred configuring project ':app'.> Failed to find target with hash string 'android-27' in: D:\program\android_sdk搜索结果:在初学react-native时,执行命令react-native run-android会报如下错误:react-native run-androidStarting JS server...Building and installing the app on the device (cd android && ./gradlew installDebug...FAILURE: Build failed with an exception.* What went wrong:A problem occurred configuring project ':app'.> failed to find Build Tools revision 23.0.1* Try:Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.BUILD FAILEDTotal time: 6.292 secsCould not install the app on the device, read the error above for details.Make sure you have an Android emulator running or a device connected and haveset up your Android development environment: https://facebook.github.io/react-native/docs/android-setup.html events.js:141      throw er; // Unhandled 'error' event      ^Error: spawn xterm ENOENT    at exports._errnoException (util.js:870:11)    at Process.ChildProcess._handle.onexit (internal/child_process.js:178:32)    at onErrorNT (internal/child_process.js:344:16)    at nextTickCallbackWith2Args (node.js:442:9)    at process._tickCallback (node.js:356:17)解决办法:android SDK版本不对应,本文23.0.1版本对不上,用Android SDK Manager一查看果然如此,安装了23.0.2和23.0.3,就是唯独没有安装23.0.1。所以我就把android/app/build.gradle文件中buildToolsVersion "23.0.1"改为"23.0.2",然后就测试通过了。本人觉得,如果把23.0.1 SDK装上估计也可以的。使用android studio进行build时出现此错误Error:A problem occurred configuring project ':app'. > failed to find Build       解决方法为:修改build.grade中的 buildToolsVersion  调整为安装的sdk版本2. 
compileSdkVersion targetSdkVersion 26
又出现:A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugApkCopy'.
   > Could not find com.android.support.constraint:constraint-layout:1.0.2.     Required by:         Hi:app:unspecified
调整
compile 'com.android.support:appcompat-v'版本
3. Installation failed with message InStall_canceled_by_user开发者选项中的usb安装未打开..
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐