My wear app uses WearableListView.Item for ListView, and it worked fine and compiled, but then I updated Android Studio, Gradle plugin, SDK tools, etc. etc., and now it will not compile.
My build.gradle clothes contains:
compileSdkVersion 20 buildToolsVersion "21.1.2" ... minSdkVersion 20 targetSdkVersion 20 ... dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.google.android.support:wearable:+' compile 'com.google.android.gms:play-services-wearable:6.5.+' }
Now he says: Error: (141, 84) error: cannot find character class Element
Any help there please?
source share