Skip to content

Commit

Permalink
Update JavaCV-android-example to JavaCV 1.5.9 (pull #69)
Browse files Browse the repository at this point in the history
  • Loading branch information
lancewoo authored Jun 9, 2023
1 parent a9f14f5 commit 7ecaa4b
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions JavaCV-android-example/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion "30.0.2"
buildToolsVersion "30.0.3"

defaultConfig {
applicationId "org.bytedeco.javacv_android_example"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"

ndk {
// in case you want to use some arch only
abiFilters "armeabi-v7a"//, "arm64-v8a"
}
}
dexOptions {
javaMaxHeapSize "2G"
Expand All @@ -34,8 +39,9 @@ task javacppExtract(type: Copy) {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation group: 'org.bytedeco', name: 'javacv', version: '1.5.6'
javacpp group: 'org.bytedeco', name: 'openblas-platform', version: '0.3.17-1.5.6'
javacpp group: 'org.bytedeco', name: 'opencv-platform', version: '4.5.3-1.5.6'
javacpp group: 'org.bytedeco', name: 'ffmpeg-platform', version: '4.4-1.5.6'
implementation group: 'org.bytedeco', name: 'javacv', version: '1.5.9'
javacpp group: 'org.bytedeco', name: 'openblas-platform', version: '0.3.23-1.5.9'
javacpp group: 'org.bytedeco', name: 'opencv-platform', version: '4.7.0-1.5.9'
javacpp group: 'org.bytedeco', name: 'ffmpeg-platform', version: '6.0-1.5.9'

}

0 comments on commit 7ecaa4b

Please sign in to comment.