Overview
Skill Level: Any
Prerequisites
Not what you’re looking for? Check out all our available tutorials for mobile app messaging here.
Â
Â
Step-by-step
-
Migrating a project from jar to aar
The sdk release 3.8.1 contains only aar binaries and no longer contain jar binaries.
Migrating sdk:
- Remove sdk jar from the libs folder.
- Add the sdk aar to the libs folder.
- In the main project build.gradle file, add to all projects repository:
flatDir
{ dirs ‘libs’ } - Add to the app’s build.gradle dependencies:
implementation (name:’sdk aar file name without the extension’, ext:’aar’)
Migrating a plugin:
- Remove the plugin jar from the libs folder.
- Remove all the plugin resources that were added to the project.
- Add the plugin aar to the libs folder.
- Add to the app’s build.gradle dependencies:
implementation (name:’plugin aar file name without the extension’, ext:’aar’)
Expected outcome
Need more help? Check out all of our available tutorials for mobile app messaging here.
Â