Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.

Commit 383646d

Browse files
committed
Merge branch 'release/1.0.1'
# Conflicts: # example/pubspec.lock
2 parents f49da7b + eefb3dc commit 383646d

22 files changed

Lines changed: 262 additions & 149 deletions

.fvmrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"flutter": "3.19.4",
3+
"flavors": {}
4+
}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,7 @@ migrate_working_dir/
3939
build/
4040
android/src/main/jniLibs
4141
ios/opencv2.framework
42-
include/
42+
include/
43+
44+
# FVM Version Cache
45+
.fvm/

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dart.flutterSdkPath": ".fvm/versions/3.19.4"
3+
}

CHANGELOG.md

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,41 @@
1+
## 1.0.1
2+
3+
- [Update] Upgrade flutter package dependencies
4+
15
## 1.0.0
2-
* [Feature] Add a binding to change the Yuv420_888 image format to RGB format
3-
* [Fix] Fixed return value false on initialize call after initialization
4-
* [Fix] Fixed data loss due to CROP during internal image processing
5-
* [Update] Update plugin interface
6-
* [Update] Update plugin demo application
6+
7+
- [Feature] Add a binding to change the Yuv420_888 image format to RGB format
8+
- [Fix] Fixed return value false on initialize call after initialization
9+
- [Fix] Fixed data loss due to CROP during internal image processing
10+
- [Update] Update plugin interface
11+
- [Update] Update plugin demo application
712

813
## 0.1.6
9-
* [Fix] Fixed to not build the x86 version. Flutter Android does not generate x86 release.
14+
15+
- [Fix] Fixed to not build the x86 version. Flutter Android does not generate x86 release.
1016

1117
## 0.1.5
12-
* [Fix] Fixed Android build .so file merging errors
13-
* [Update] Revised installation method and updated related information
18+
19+
- [Fix] Fixed Android build .so file merging errors
20+
- [Update] Revised installation method and updated related information
1421

1522
## 0.1.4
16-
* [Fix] Fixed iOS builds failing to call native method due to symbolic link error
23+
24+
- [Fix] Fixed iOS builds failing to call native method due to symbolic link error
1725

1826
## 0.1.3
19-
* [Update] Embed the OpenCV include file directly inside the plugin because it was inconvenient to install the plugin using an existing script
20-
* [Update] Converted internal example text to English
27+
28+
- [Update] Embed the OpenCV include file directly inside the plugin because it was inconvenient to install the plugin using an existing script
29+
- [Update] Converted internal example text to English
2130

2231
## 0.1.2
2332

24-
* [Fix] Remove unused variables and update preparations for package uploads
33+
- [Fix] Remove unused variables and update preparations for package uploads
34+
2535
## 0.1.1
2636

27-
* [Fix] Fixed a memory leak on some devices
37+
- [Fix] Fixed a memory leak on some devices
2838

2939
## 0.1.0
3040

31-
* [New] Added plugin basic similarity and marker and query functionality
41+
- [New] Added plugin basic similarity and marker and query functionality

android/build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ allprojects {
2424
apply plugin: 'com.android.library'
2525
apply plugin: 'kotlin-android'
2626

27+
def min = 24
28+
def tar = 34
29+
2730
android {
28-
compileSdkVersion 33
31+
compileSdk tar
2932

3033
compileOptions {
3134
sourceCompatibility JavaVersion.VERSION_1_8
@@ -41,7 +44,7 @@ android {
4144
}
4245

4346
defaultConfig {
44-
minSdkVersion 24
47+
minSdkVersion min
4548
externalNativeBuild {
4649
cmake {
4750
cppFlags '-frtti -fexceptions -std=c++11'

example/.fvmrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"flutter": "3.19.4",
3+
"flavors": {}
4+
}

example/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,6 @@ app.*.map.json
4242
/android/app/debug
4343
/android/app/profile
4444
/android/app/release
45+
46+
# FVM Version Cache
47+
.fvm/

example/.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dart.flutterSdkPath": ".fvm/versions/3.19.4"
3+
}

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

2828
def min = 24
29-
def tar = 33
29+
def tar = 34
3030

3131
android {
32-
compileSdkVersion tar
32+
compileSdk tar
3333
ndkVersion flutter.ndkVersion
3434

3535
compileOptions {

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

0 commit comments

Comments
 (0)