2015-09-14 16 views
106

Guardando questo build.gradle file diQual è la sintassi per scrivere commenti nel file build.gradle?

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' 
} 

Che cosa succede se mi piacerebbe scrivere un commento su perché ho scelto questa libreria per questo progetto,

Qual è la sintassi per la scrittura di commenti in build.gradle di file ?

risposta

168

Facile:

// Single line comment 

/* 
Multi 
line 
comment 
*/ 
15

Utilizzare il // o /* */

Ad esempio:

 // 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 : "" 
} 
+0

Bene che era piuttosto strano, il mio Studio Android non stava riconoscendo le righe di commento fino a quando ho riavviato esso. La cosa divertente anche se non ha alcuna risposta sul web. – Machado