안드로이드

사전 준비

Adrop에 안드로이드 앱 등록을 마치셨나요? 등록이 완료되었을 경우 프로젝트에서 Adrop Metrics가 활성화되어 있는지 확인하세요.

Adrop 초기화하기

// 1. Application Context를 사용하세요.
// 2. production = true 를 사용하세요.
// 3. 특정 국가에서 이 SDK를 사용하고 있다면, 
//    ISO 3166 alpha-2 국가 코드 array를 전달하세요.
Adrop.initialize(
    application, 
    production = false,
    targetCountries = arrayOf<String>())

Log Events

커스텀 이벤트를 기록하여 운영 중인 앱의 사용자를 세그먼트로 정의할 수 있습니다.

AdropMetrics에 대해 더 알아보세요.

val params = AdropEventParam.Builder()
    .putInt("data_key_1", 1)
    .putFloat("data_key_2", 1.2)
    .putBoolean("data_key_3", true)
    .putString("data_key_4", "value_text")
    .build()

AdropMetrics.logEvent("event_name", params)

Last updated