Fixed
Status Update
Comments
al...@google.com <al...@google.com> #2
I had the same problem today, and this could be related to https://code.google.com/p/android/issues/detail?id=67376
As a temporary fix, I changed the build.gradle from
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
to:
dependencies {
classpath 'com.android.tools.build:gradle:0.9.0'
}
As a temporary fix, I changed the build.gradle from
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
to:
dependencies {
classpath 'com.android.tools.build:gradle:0.9.0'
}
bu...@google.com <bu...@google.com> #3
That seems to have worked around the problem - thank you very much.
Maybe this should be merged into 67376?
Maybe this should be merged into 67376?
Ar...@qq.com <Ar...@qq.com> #4
The same problem when using list navigation mode. Just place the following line in onCreate() to get an app crash!
getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
al...@google.com <al...@google.com>
al...@google.com <al...@google.com> #6
mark, i had same problem, Thx
ap...@google.com <ap...@google.com> #7
same Issue down here, I had references to Appcompat theme in my layout file. Passing Gradle plugin version to 0.9.0 fix it. Thanks !
Description