Migration to React Native 0.6.0
We have made some major changes in Apptics SDK 0.6.0 version. These changes are applicable to how events tracking will work from 0.6.0.
You can now add events directly to the SDK. However, there are certain norms that must follow for events and custom properties. Refer to the events guide.
Android integration changes
- Update the apptics plugin version to 0.1.2 in project level build.gradle (android/build.gradle)
Copiedclasspath("com.zoho.apptics:apptics-plugin:0.1.2")
- Remove the gradle extension fields related to the events like supportEventAsStrings.
- You no longer have to add the below snippet in app level build.gradle (android/build.gradle).
Copiedapptics {
supportEventAsStrings = [ "default" : true ]
}