为什么我真的不能遵循这个Android Studio教程?

时间:2015-10-21 14:55:22

标签: android ubuntu

我正在关注如何使用Android Studio创建Android应用的this tutorial。最后,用户打开文件' build.gradle'看起来与我的完全不同:

// 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.3.0'

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

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

也许这不是很重要?或者是使用旧版AndroidStudio / SDK / gradle /视频的视频?

1 个答案:

答案 0 :(得分:1)

您正在打开顶级 gradle文件。视频中显示的gradle文件是app模块。

您可以在同一个项目中拥有多个模块来划分应用代码和/或创建共享某些代码的不同应用。每个模块都有自己的gradle文件来配置其依赖关系并知道如何编译它。顶级文件包含所有模块的通用配置选项,如最高评论所示。