1. 개인정보의 처리 목적 (‘https://devtrace.tistory.com’이하 ‘rooms’) 은(는) 다음의 목적을 위하여 개인정보를 처리하고 있으며, 다음의 목적 이외의 용도로는 이용하지 않습니다. - 고객 가입의사 확인, 고객에 대한 서비스 제공에 따른 본인 식별.인증, 회원자격 유지.관리, 물품 또는 서비스 공급에 따른 금액 결제, 물품 또는 서비스의 공급.배송 등2. 개인정보의 처리 및 보유 기간① (‘https://devtrace.tistory.com’이하 ‘rooms’) 은(는) 정보주체로부터 개인정보를 수집할 때 동의 받은 개인정보 보유․이용기간 또는 법령에 따른 개인정보 보유․이용기간 내에서 개인정보를 처리․보유합니다.② 구체적인 개인정보 처리 및 보유 기간은 다음과 같습니다.☞..
1. Sonarqube 서버 설치 brew install sonarqubebrew services start sonarqube 스캐너 설치brew install sonar-scanner 2. Android Gradle에 아래 내용을 추가 한다.buildscript { repositories { maven { url "https://plugins.gradle.org/m2/" } } dependencies { classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.5" } }apply plugin: "org.sonarqube" sonarqube { properties { property "sonar.host.url", "http://local..
> Kotlin에서 아래와 같이 TAG 정의 val TAG = IntroActivity::class.qualifiedName > 그랬더니 아래와 같이 에러가 두둥!!! kotlin.jvm.KotlinReflectionNotSupportedError: Kotlin reflection implementation is not found at runtime. Make sure you have kotlin-reflect.jar in the classpath > 이런 경우 Gradle에서 아래 항목 dependencies에 추가 하면 해결~! compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" Reflection 관련 내용은 아래 링크 참조 http://c..
