Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


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


6. Open  Make sure your AndroidManifestapplication build.xml file after making sure the Appoxee SDK module is part of your projectImage Removed7. Please add the following lines gradle file include the applicationId attribute for android defaultConfig. Alternately, you can replace ${applicationId} with you application package (e.g com.yourapppackage.app). Also please add the following dependenices to your app's gradle.build dependencies section (after step 5 is complete)

 

Code Block
languagejs
firstline1
titlegradle.build
linenumberstrue
android {
	...
	defaulfConfig {	
		applicationId "com.yourapppackage.app"		//make sure you have this
		...
	}
}
 
...
dependencies {
    compile 'com.google.android.gms:play-services-gcm:8.1.0'	//8.1.0 or above
    compile project(':appoxeesdk')
 
	//in case you want to use our in-app inbox, or use proguard:
	//compile 'com.j256.ormlite:ormlite-core:4.48'
	//compile 'com.j256.ormlite:ormlite-android:4.48'
}