在Android Studio 2.2更新后转换项目

前端之家收集整理的这篇文章主要介绍了在Android Studio 2.2更新后转换项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好 AndroidStudio用户,

最近我用2.2版本更新了我的Android Studio,没有那么多gradle和Instant Run更新,我已经更新了.

但每当打开新项目时,我都会按照对话框转换项目.

是否需要转换?实际转换的是什么?谁知道?

解决方法

它只是更新您的build.gradle文件获取Android Studio的新功能.

buildscript

对于Android Studio版本2.1.3

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

到最新的Android Studio版本2.2

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
原文链接:https://www.f2er.com/android/315895.html

猜你在找的Android相关文章