I just downloaded Android Studio 1.0RC4 and I can't build any project, even newly created ones.
The error I got is:
Error:Could not run build action using Gradle distribution 'https://services.gradle.org/distributions/gradle-2.2.1-all.zip'.
I was able to download the zip from the browser but it's not working on AS. This is my build.gradle file:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0-rc1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
Module build file:
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
defaultConfig {
applicationId "simple.com.car10"
minSdkVersion 14
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
Graddle-wrapper.properties
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
I Tried to run graddle - build from cmd, and I got this error:
FAILURE: Build failed with an exception.
* What went wrong:
Build file 'C:\Users\Giovanni\uild' does not exist.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug
option to get more log output.
BUILD FAILED
Total time: 3.093 secs
JDK: 1.8.0_05
When I hit try again nothing happens, I already tried uninstalling everything and installing again but it didn't work.
Any ideas guys? Thanks.
In some cases when your Gradle files are deleted or corrupted you will not be able to download new Gradle files in android studio. In this case, we have to delete the Gradle files which are present already and then again sync your project to download our Gradle files again.
Build types define certain properties that Gradle uses when building and packaging your app, and are typically configured for different stages of your development lifecycle. There are two build types defined by default, debug and release , and you can customize them and create additional build types.
As the name suggest, "Android Build Tools" is a command line tools for building your Java source code (along with all the related assets) into executable APK file. It's located at your Android SDK directory (usually at $ANDROID_HOME ) and can be updated using Android SDK manager (accessible via Android Studio IDE).
I finally got it working guys
I had to delete the .gradle folder in 'C:\Users\Username\' and then I opened AS with admin rights and it came back to life!
Thanks everyone.
you can probably drop the RC-1 in your build.gradle:
classpath 'com.android.tools.build:gradle:1.0.0'
Here's a checklist of things that have changed recently
http://tools.android.com/tech-docs/new-build-system/migrating-to-1-0-0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With