0
android studioにopencvを統合する際にエラーが発生しました。私はOpenCVのモジュール、Gradleのビルドをインポートするとき3.1.0,3.3.0,3.2.0opencvの統合中にエラーが発生しました
をしかし、モジュールの依存関係を追加しているとき、それは次のようになります: 私のSDKのバージョンは、私はすでに試してみました26の
OpenCVのバージョンでありますエラー。
のOpenCVのGradle:
apply plugin: 'com.android.library'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
minSdkVersion 19
targetSdkVersion 26
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.txt'
}
}
}
モジュールアプリ:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.example.kathirpandian.finalopencv"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-
core:3.0.1'
compile project(':openCVLibrary310')
}
私は最後の2日間からPLSではこの
'build.gradle'ファイルの関連セクションを投稿してください。 – Thomas
私のグラデルファイルが添付されています –