NHN Cloud > SDK User Guide > Getting Started > Android

Supported Environment

  • Android 4.0.3 or higher
  • The latest version of Android Studio (version 2.2 or higher)

NHN Cloud SDK Components

NHN Cloud SDK for Android consists of the following:

You can selectively apply the required feature among the services provided by NHN Cloud SDK.

Gradle Dependency Service
com.nhncloud.android:nhncloud-common:1.8.5 Common
com.nhncloud.android:nhncloud-core:1.8.5 Core
com.nhncloud.android:nhncloud-logger:1.8.5 Log & Crash
com.nhncloud.android:nhncloud-crash-reporter-ndk:1.8.5 Native Crash Reporter
com.nhncloud.android:nhncloud-iap-core:1.8.5 In-app Purchase Core
com.nhncloud.android:nhncloud-iap-google:1.8.5 In-app Purchase
Google Play Store
com.nhncloud.android:nhncloud-iap-onestore:1.8.5 In-app Purchase
ONE store
com.nhncloud.android:nhncloud-iap-galaxy:1.8.5 In-app Purchase
Galaxy Store
com.nhncloud.android:nhncloud-push-core:1.8.5 Push Core
com.nhncloud.android:nhncloud-push-fcm:1.8.5 Push
Firebase Cloud Messaging
com.nhncloud.android:nhncloud-creditcard-recognizer:1.8.5 Credit Card Recognizer

Apply NHN Cloud SDK to Android Studio Projects

1. Build Android with Gradle

To use all NHN Cloud SDK services, set dependency as shown below.

If you are using Unity, separate dependency setting is required. For more details, see Guide for Unity.

repositories {
  mavenCentral()
}

dependencies {
  implementation 'com.nhncloud.android:nhncloud-sdk:1.8.5'
}

The following describes how to set dependency for each product of NHN Cloud SDK.

2. Build Android with AAR

Android SDK can be downloaded from the Downloads page.

Set User ID

User ID can be set for NHN Cloud SDK. The configured User ID is commonly used in each module of NHN Cloud SDK. Whenever Log Sending API of NhnCloudLogger is called, the configured User ID is sent to a server along with logs.

Specification for User ID Setting API

/* NhnCloudSdk.java */
public static void setUserId(String userId);
Parameters
userId String: User ID

Example of User ID Setting

Login

// Login.
NhnCloudSdk.setUserId(userId);

Logout

// Logout.
NhnCloudSdk.setUserId(null);

Set Debug Mode

To check internal logs of NHN Cloud SDK, the debug mode can be set. When you make an inquiry regarding NHN Cloud SDK, sending the logs with the debug mode enabled can be helpful for faster response.

Specification for Debug Mode Setting API

/* NhnCloudSdk.java */
public static void setDebugMode(boolean debug);
Parameters
debug boolean: true to enable debug mode, false otherwise.

Usage Example of Debug Mode Setting

Enable Debug Mode

// Enable debug mode.
NhnCloudSdk.setDebugMode(true);

Disable Debug Mode

// Disable debug mode.
NhnCloudSdk.setDebugMode(false);

[Caution] The debug mode must be disabled before releasing an app.

Use NHN Cloud Services

TOP