Loading...
Searching...
No Matches
Flutter Installation Guide

Installation with Pub.dev

1) Add following lines inside dependencies part in your apps pubspec.yaml file:

dependencies:
...
navigine_sdk: ^1.2.7

2) Run flutter pub get

3) Add following lines in android/build.gradle

allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}