Tag: android studio 2.2

为属性'resourceFile'指定的\ build \ intermediates \ res \ resources-anzhi-debug-stripped.ap_'不存在

我更新了Android Studio到版本2.0。 构build失败,也需要比Android Studio版本1.5更长的时间来构build。 每次我运行我的应用程序,我清理并重新加载项目,但它是没有用的。 错误消息是: 为属性'resourceFile'指定的\ build \ intermediates \ res \ resources-anzhi-debug-stripped.ap_不存在。

Android Studio错误:错误:CreateProcess错误= 216,此版本的%1与您正在运行的Windows版本不兼容

安装了Android Studio 2.2 Preview 2并得到这个错误: 错误:CreateProcess错误= 216,此版本的%1与您正在运行的Windows版本不兼容。 检查计算机的系统信息,然后联系软件发行商 截图: 我重新安装了JDK,仍是同样的问题。 我甚至试图使用embedded式的JDK,但仍然有相同的问题:

不支持的方法:运行项目时AndroidProject.getPluginGeneration()

我试图用Android Studio 2.2运行我的项目,但我得到这个错误 Unsupported method: AndroidProject.getPluginGeneration(). The version of Gradle you connect to does not support that method. 我正在使用ButterKnife 8.4.0 我的应用程序gradle.file: buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.0' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' } } 我的模块gradle文件: apply plugin: 'com.android.application' apply plugin: 'android-apt' android { compileSdkVersion 23 buildToolsVersion "23.0.3" defaultConfig { applicationId "xxx.xx" minSdkVersion 10 targetSdkVersion […]