singular-labs / Singular-Flutter-SDK

MIT License
4 stars 14 forks source link

Typo in Flutter's documentation code which leads to error #40

Closed lucasuracosta closed 11 months ago

lucasuracosta commented 11 months ago

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!

shefdanny commented 11 months ago

fixed. Thank you.