Skip to content

Commit

Permalink
fix [Android] Support 16KB Page Size #294
Browse files Browse the repository at this point in the history
rainyl committed Nov 21, 2024
1 parent c0c1b6c commit 4e96ed1
Showing 5 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -31,6 +31,7 @@ publish/
*.tar.gz
*.exe
libdartcv*
.DS_STORE

# Files and directories created by pub
.dart_tool/
Original file line number Diff line number Diff line change
@@ -2,7 +2,8 @@
<application
android:label="opencv_core_example"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
android:icon="@mipmap/ic_launcher"
android:extractNativeLibs="true">
<activity
android:name=".MainActivity"
android:exported="true"
4 changes: 2 additions & 2 deletions packages/opencv_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@ description: |
This plugin does NOT include `highgui` and `videoio`,
if you need them, please use `opencv_dart` instead.
version: 1.3.2
opencv_version: 4.10.0+9
dartcv_version: 4.10.0.4
opencv_version: 4.10.0+10
dartcv_version: 4.10.0.5
repository: https://github.com/rainyl/opencv_dart
homepage: https://github.com/rainyl/opencv_dart/tree/main/packages/opencv_core

Original file line number Diff line number Diff line change
@@ -2,7 +2,8 @@
<application
android:label="opencv_dart_example"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
android:icon="@mipmap/ic_launcher"
android:extractNativeLibs="true">
<activity
android:name=".MainActivity"
android:exported="true"
4 changes: 2 additions & 2 deletions packages/opencv_dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@ description: |
This plugin include `videoio` module, if you don't need it,
please use `opencv_core` instead.
version: 1.3.2
opencv_version: 4.10.0+9
dartcv_version: 4.10.0.4
opencv_version: 4.10.0+10
dartcv_version: 4.10.0.5
repository: https://github.com/rainyl/opencv_dart
homepage: https://github.com/rainyl/opencv_dart/tree/main/packages/opencv_dart

0 comments on commit 4e96ed1

Please sign in to comment.