### Update Parse.ly Android SDK Initialization Source: https://github.com/parsely/parsely-android/blob/main/MIGRATION.md Migrate from the deprecated `ParselyTracker#sharedInstance` initialization method to the new `ParselyTracker#init` method. Failure to initialize before accessing `sharedInstance` will result in a `ParselyNotInitializedException`. ```Kotlin ParselyTracker.sharedInstance("example.com", 30, this, true) // before ParselyTracker.init("example.com", 30, this, true) // now ``` -------------------------------- ### Configure Parse.ly Android SDK Debug Mode Source: https://github.com/parsely/parsely-android/blob/main/MIGRATION.md The debug mode configuration has been simplified. The `ParselyTracker#setDebug` method is removed. To enable debug mode, set the `dryRun` property to `true` during `ParselyTracker` initialization. ```Kotlin // To enable debug mode, set dryRun to true during initialization: ParselyTracker.init("example.com", 30, this, true) ``` -------------------------------- ### Include Parsely Android SDK Source: https://github.com/parsely/parsely-android/blob/main/README.md This snippet shows how to add the Parsely Android SDK to your project using Gradle. It specifies the dependency for MavenCentral. ```Groovy implementation("com.parsely:parsely:") ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.