Naver Game guide
1.Get Naver Game SDK
Please check the guide at https://navergame.gitbook.io/naver-game/v/english/integration-guide/android Please consult our operations staff for specific functions to use In general, only the initMoudle() method and the startHome() method will be called
If the version of ULUSDK is 3.4.0 or above, you cannot use navergame-sdk-gradle-x.aar directly, but need to use navergame-sdk-gradle-with-adapter-x.aar,glideadapter-v3.jar and nid-adapter-550.jar
If the version of Naver Game SDK is 1.3.3 or above, you need to add NNGLink.enableScreenShotDetector(false) after initMoudle to prevent screenshots from triggering naver game functions.
2.About the permissions
Naver Game SDK contains dangerous permissions(such as READ_EXTERNAL_STORAGE and CAMERA) If you not need them, you can remove them by adding the following code in AndroidManifest.xml
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" tools:node="remove"/>
<uses-permission android:name="android.permission.CAMERA" tools:node="remove"/>