...
In the build.gradle file of the applied application, selectively configure the necessary modules as shown below.For developers using a version of Gradle below 3.0 who cannot use 'implementation', 'compile' can be used instead.
코드 블럭 |
---|
apply plugin: 'com.android.application' android { ... // Required to use Java 8 language features compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } ... dependencies { // Required for games using guest authentication. implementation "com.kakaogame.publishing:idp_device:$KAKAO_GAME_SDK_VERSION" // Required for games using Kakao authentication. implementation "com.kakaogame.publishing:idp_kakao:$KAKAO_GAME_SDK_VERSION" // Required for games using Apple authentication. implementation "com.kakaogame.publishing:idp_siwa:$KAKAO_GAME_SDK_VERSION" // Required to use the main features of the Game SDK. implementation "com.kakaogame.publishing:gamesdk:$KAKAO_GAME_SDK_VERSION" } apply plugin: 'com.google.gms.google-services' // Google Services plugin |
...