I have an interface defined in the aidl but I can't extend it or find it any way. The ide just tells me: Can not resolve symbol 'KeyEventListener' Any idea how to fix this?
Additional infos:
I know android-studio is some thing like a pre-alfa but like it very much and would be very happy if some one could halp me out on this!
You are probably best off having a look at The Gradle Plugin User Guide for Android.
Gradle, by default, requires a particular directory structure. If you want to use Gradle with a directory structure that most Android devs are accustomed to, you'll need to put the following (from the above-mentioned link) inside the "android" block.
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
}
After you've done this, do a clean and rebuild to be on the safe side.
Personally, I just adapt my projects to fit the new convention.