Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

The following instructions are for developers using Android Studio.

For Eclipse integration see: Alternative - Adding the Appoxee Android SDK Using Eclipse

 

We have simplified the process by creating an AAR file which can be downloaded from our download page.

The instructions are followed by some screenshots and code samples which will result the most basic integration with the Appoxee SDK.

The Test Application located in the download page contains a full code sample of what is written here.


1.Download the .AAR file from the download page.

2. Open the Android Studio and create your application

3. Import the Appoxee SDK aar file


 

 

4. Select "Import .JAR/.AAR Package"


 
5. Select the Appoxee SDK aar file from the location you have saved it
 


6. Open your AndroidManifest.xml file after making sure the Appoxee SDK module is part of your project



7. Please add the following lines to your app's gradle.build dependencies section (after step 5 is complete) : 

 

gradle.build
...
dependencies {
    compile 'com.google.android.gms:play-services-gcm:7.5.0'
    compile project(':appoxeesdk')
}

  • No labels