singular-labs/Singular-Flutter-SDK

Typo in Flutter's documentation code which leads to error

Closed this issue · 1 comments

In the section concerning Flutter deep links the kotlin code says:

import android.content.intent;

When trying to use that one the following error is thrown: Unresolved reference: Intent.

The reason is because the import should be:

import android.content.Intent; (Capital "i" on intent)

A subtle detail which was tricky to find out. I hope it helps for new users once you update it!

Thanks!

fixed. Thank you.