braze-inc / braze-flutter-sdk

Public repo for the Braze Flutter SDK
Other
15 stars 29 forks source link

Unclear upgrade path from 2.x to 3.0.0 #34

Closed JordyLangen closed 1 year ago

JordyLangen commented 1 year ago

While updating all of our packages I noticed that there was a 3.0.0 release.

The release notes docs to not match the linked docs.

Please provide an upgrade path for a config like this:

        Appboy.start(
            withApiKey: brazeConfig.key,
            in: application,
            withLaunchOptions: launchOptions,
            withAppboyOptions: [
                ABKInAppMessageControllerDelegateKey: brazeDelegate,
                ABKEndpointKey: brazeConfig.endpoint,
                ABKEnableAutomaticLocationCollectionKey: false
            ]
        )
JordyLangen commented 1 year ago

Ah, I see there is an example provided, but that "conflicts" with this.