Skip to main content
Version: 1.0

2.1.1.1 Setup

Setup basic requirement

Step 1: Add the flutter_verifyspeed package

Add the latest version of the flutter_verifyspeed package to your pubspec.yaml file:

yaml
dependencies:
flutter_verifyspeed: ^latest_version

Step 2: Android Setup

  • Open your android/build.gradle file
  • In the repositories section, add this line maven { url 'https://jitpack.io' }
  • Your build.gradle file should look like this:
gradle
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}