반응형
build.gradle 파일에 주석을 작성하는 구문은 무엇입니까?
이 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'
}
나는에 댓글 쓰기 무엇을 좋아하면 나는이 프로젝트에이 라이브러리를 선택 않는 이유를 ,
build.gradle
파일에 주석을 작성하는 구문은 무엇 입니까?
쉬운:
// Single line comment
/*
Multi
line
comment
*/
사용하여 //
또는/* */
예를 들면 다음과 같습니다.
// 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 : ""
}
반응형
'Programing' 카테고리의 다른 글
목록에서 가장 일반적인 요소 찾기 (0) | 2020.06.05 |
---|---|
Bash를 사용하는 가장 좋아하는 명령 줄 트릭은 무엇입니까? (0) | 2020.06.05 |
왜 자식이 "파일을 병합 해제했기 때문에 풀을 사용할 수 없습니다"라고 표시합니까? (0) | 2020.06.04 |
원격 레지스트리에 Docker 이미지의 모든 태그를 나열하는 방법은 무엇입니까? (0) | 2020.06.04 |
UIViewController viewDidLoad 대 viewWillAppear : 적절한 분업은 무엇입니까? (0) | 2020.06.04 |