Guide to Kakao - WindSekirun/RxSocialLogin GitHub Wiki

Steps to add module

add this dependency in app/build.gradle

repositories {
    maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
}
implementation 'com.kakao.sdk:usermgmt:1.11.1'

add this statement in AndroidManifest.xml

<meta-data
            android:name="com.kakao.sdk.AppKey"
            android:value="YOUR-API-KEY"/>

Config Objects

kakao {
    requireAgeRange = true
    requireBirthday = true
    requireEmail = true
    requireGender = true
}