My project compiles fine, but Android Studio is panicking because it thinks it cannot find opencv modules:


OpenCV is included as a separate module, and it is listed as a dependency. As far as I can tell, this is all wonderful. OpenCV build.gradle as follows:
apply plugin: 'android-library' buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.11.+' } } android { compileSdkVersion 19 buildToolsVersion "19.1" defaultConfig { minSdkVersion 8 targetSdkVersion 19 versionCode 2480 versionName "2.4.8" } sourceSets { main { manifest.srcFile 'AndroidManifest.xml' java.srcDirs = ['src'] resources.srcDirs = ['src'] res.srcDirs = ['res'] aidl.srcDirs = ['src'] } } }
Any idea what is going on? I donβt listen too much, as I said, it compiles and works absolutely fine. It is very annoying though.
source share