Cú pháp để viết bình luận trong tập tin build.gradle là gì?


174

Nhìn xuống build.gradletập tin này

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "package.myapp"
        minSdkVersion 19
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.nineoldandroids:library:2.4.0'
}

Điều gì sẽ xảy ra nếu tôi muốn viết bình luận về lý do tại sao tôi chọn thư viện này cho dự án này ,

cú pháp để viết bình luận trong build.gradletập tin là gì?

Câu trả lời:


265

Dễ dàng:

// Single line comment

/*
 Multi
 line
 comment
*/

29

Sử dụng //hoặc/* */

Ví dụ:

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

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

/**
 * Returns the credential username used by Namirial Maven repository
 * Set this value in your ~/.gradle/gradle.properties with CREDENTIALS_USERNAME key
 * @return
 */
def getCredentialsMavenUsername() {
    return hasProperty('CREDENTIALS_USERNAME') ? CREDENTIALS_USERNAME : ""
}

Điều đó khá kỳ lạ, Android Studio của tôi đã không nhận ra các dòng bình luận cho đến khi tôi khởi động lại nó. Điều buồn cười mặc dù nó không có bất kỳ câu trả lời nào trên web.
Machado
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.