IGAWorks Android SDK
All IGAWorks services are offered in the form of common modules + add-ons.
In order
to use services such as adbrix, adPOPcorn (OfferWall, DA), LiveOperation, Promotion, Coupon, Nanoo, etc., the add-ons must be integrated after common
integration is completed.
Download
Download
the latest version of the SDK common module file and the SDK add-on.
[SDK Download Center]
Adding the SDK
Android Studio Project
Copy the
downloaded IgawCommon~*.jar file and the Igaw~*.jar files to the app/libs
folder.

Copy the
files and confirm that the bundle.gradle file dependencies have been properly
set.

Eclipse Project
Copy the
downloaded IgawCommon~*.jar file and the Igaw~*.jar files to the Project/libs
folder.

ProGuard Setting
To process
obfuscation via ProGuard, the IGAWorks SDK should be excepted as follows:##---------------Begin: proguard configuration for Igaworks Common ----------
-keep class com.igaworks.** { *; }
-dontwarn com.igaworks.**
##---------------End: proguard configuration for Igaworks Common ----------
##---------------Begin: proguard configuration for Gson ----------
# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.
-keepattributes Signature
# For using GSON @Expose annotation
-keepattributes *Annotation*
# Gson specific classes
-keep class sun.misc.Unsafe { *; }
-keep class com.igaworks.gson.stream.** { *; }
# Application classes that will be serialized/deserialized over Gson
-keep class com.igaworks.adbrix.model.** { *; }
##---------------End: proguard configuration for Gson ----------
-keep class com.igaworks.** { *; }
-dontwarn com.igaworks.**
+ Android
Studio: Edit the app/proguard-rules.pro file.
+ Eclipse:
Edit the Project/proguard-project.txt file.
##---------------Begin: proguard configuration for Igaworks Common ----------
-keep class com.igaworks.** { *; }
-dontwarn com.igaworks.**
##---------------End: proguard configuration for Igaworks Common ----------
##---------------Begin: proguard configuration for Gson ----------
# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.
-keepattributes Signature
# For using GSON @Expose annotation
-keepattributes *Annotation*
# Gson specific classes
-keep class sun.misc.Unsafe { *; }
-keep class com.igaworks.gson.stream.** { *; }
# Application classes that will be serialized/deserialized over Gson
-keep class com.igaworks.adbrix.model.** { *; }
##---------------End: proguard configuration for Gson ----------