Skip to content

Commit 3c234ea

Browse files
authored
Merge pull request #295 from rainyl/android-16kb-page-size
fix [Android] Support 16KB Page Size #294
2 parents c0c1b6c + c295863 commit 3c234ea

File tree

7 files changed

+33
-30
lines changed

7 files changed

+33
-30
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ publish/
3131
*.tar.gz
3232
*.exe
3333
libdartcv*
34+
.DS_STORE
3435

3536
# Files and directories created by pub
3637
.dart_tool/

packages/opencv_core/example/android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<application
33
android:label="opencv_core_example"
44
android:name="${applicationName}"
5-
android:icon="@mipmap/ic_launcher">
5+
android:icon="@mipmap/ic_launcher"
6+
android:extractNativeLibs="true">
67
<activity
78
android:name=".MainActivity"
89
android:exported="true"

packages/opencv_core/images/opencv_core_size_report.svg

Lines changed: 11 additions & 11 deletions
Loading

packages/opencv_core/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: |
44
This plugin does NOT include `highgui` and `videoio`,
55
if you need them, please use `opencv_dart` instead.
66
version: 1.3.2
7-
opencv_version: 4.10.0+9
8-
dartcv_version: 4.10.0.4
7+
opencv_version: 4.10.0+10
8+
dartcv_version: 4.10.0.5
99
repository: https://github.com/rainyl/opencv_dart
1010
homepage: https://github.com/rainyl/opencv_dart/tree/main/packages/opencv_core
1111

packages/opencv_dart/example/android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<application
33
android:label="opencv_dart_example"
44
android:name="${applicationName}"
5-
android:icon="@mipmap/ic_launcher">
5+
android:icon="@mipmap/ic_launcher"
6+
android:extractNativeLibs="true">
67
<activity
78
android:name=".MainActivity"
89
android:exported="true"

packages/opencv_dart/images/opencv_dart_size_report.svg

Lines changed: 13 additions & 13 deletions
Loading

packages/opencv_dart/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: |
44
This plugin include `videoio` module, if you don't need it,
55
please use `opencv_core` instead.
66
version: 1.3.2
7-
opencv_version: 4.10.0+9
8-
dartcv_version: 4.10.0.4
7+
opencv_version: 4.10.0+10
8+
dartcv_version: 4.10.0.5
99
repository: https://github.com/rainyl/opencv_dart
1010
homepage: https://github.com/rainyl/opencv_dart/tree/main/packages/opencv_dart
1111

0 commit comments

Comments
 (0)