copy the lib folder, assets folder and pubspec.yaml fil to the flutter project Run 'flutter pub get' to get all the dependency, Note that the packages newer version than the one used may cause error and null error Go to android > build.gradle Change the minSdkVersion to 23 May subject to change based on the library package defaultConfig { minSdkVersion 23 } Go to android > app > src > main > AndroidManifest.xml Add uses permission below after and before app > src > main > kotlin > MainActivity.kt add the line below to the file import io.flutter.embedding.android.FlutterFragmentActivity change the class to class MainActivity: FlutterFragmentActivity() { }