Notice
Recent Posts
Recent Comments
Link
투케이2K
752. (Android/Gradle) [groovy] : [build.gradle] : Map 맵 선언 및 put 사용해 key , value 값 삽입 본문
Android
752. (Android/Gradle) [groovy] : [build.gradle] : Map 맵 선언 및 put 사용해 key , value 값 삽입
투케이2K 2024. 3. 21. 20:46[개발 환경 설정]
개발 툴 : AndroidStudio
[소스 코드]
android {
applicationVariants.all { variant ->
if (variant.buildType.isDebuggable()){ // [개발 모드 인 경우]
// [변수 선언 수행]
def map = [ : ]
// [put 사용해 map 데이터 추가]
map.put("name", "twok");
map.put("age", 30);
// [로그 출력력]
println("")
println("------------------------------------------------")
println("[Log Print]")
println("------------------------------------------------")
println("map : " + map)
println("------------------------------------------------")
println("")
}
}
}
[결과 출력]
------------------------------------------------
[Log Print]
------------------------------------------------
map : [name:twok, age:30]
------------------------------------------------
반응형
'Android' 카테고리의 다른 글
Comments