Skip to content

Commit 2baf277

Browse files
committed
removed deprecated things
upgrade flutter upto 3.24.5
1 parent 8fb79c2 commit 2baf277

10 files changed

+17
-730
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ This repo integrated `KBY-AI`'s `face recognition SDK`, which requires a license
9494
## How To Run
9595
### 1. Flutter Setup
9696
Make sure you have `Flutter` installed. </br>
97-
We have tested the project with `Flutter` version `3.22.3`.</br>
97+
We have tested the project with `Flutter` version `3.24.5`.</br>
9898
If you don't have `Flutter` installed, please follow the instructions provided in the official `Flutter` documentation [here](https://docs.flutter.dev/get-started/install).</br>
9999
### 2. Running the App
100100
Run the following commands:

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.7.10'
2+
ext.kotlin_version = '2.0.0'
33
repositories {
44
google()
55
jcenter()

facesdk_plugin/example/pubspec.lock

-267
This file was deleted.

linux/flutter/generated_plugin_registrant.cc

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
#include "generated_plugin_registrant.h"
88

9+
#include <file_selector_linux/file_selector_plugin.h>
910

1011
void fl_register_plugins(FlPluginRegistry* registry) {
12+
g_autoptr(FlPluginRegistrar) file_selector_linux_registrar =
13+
fl_plugin_registry_get_registrar_for_plugin(registry, "FileSelectorPlugin");
14+
file_selector_plugin_register_with_registrar(file_selector_linux_registrar);
1115
}

linux/flutter/generated_plugins.cmake

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#
44

55
list(APPEND FLUTTER_PLUGIN_LIST
6+
file_selector_linux
67
)
78

89
list(APPEND FLUTTER_FFI_PLUGIN_LIST

macos/Flutter/GeneratedPluginRegistrant.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
import FlutterMacOS
66
import Foundation
77

8+
import file_selector_macos
89
import shared_preferences_foundation
9-
import sqflite
10+
import sqflite_darwin
1011

1112
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
13+
FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin"))
1214
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
1315
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
1416
}

0 commit comments

Comments
 (0)