我正在使用Android Studio 2.1.2。我使用minSdkVersion開始了一個新項目19,我的活動擴展了AppCompatActivity。該項目使用片段開始一個空的活動。工具欄:IllegalStateException - 爲VectorDrawableCompat配置您的版本
使用API 24預覽content_main.xml時,一切都很好。預覽API 19歲的時候,我得到以下渲染問題:
The following classes could not be instantiated:
- android.support.v7.widget.Toolbar
java.lang.IllegalStateException: This app has been built with an incorrect configuration. Please configure your build for VectorDrawableCompat
我添加的每一件事,我發現相關的gradle產出(2個文件):
classpath 'com.android.tools.build:gradle:2.1.2'
**vectorDrawables.useSupportLibrary = true**
buildToolsVersion "24.0.1"
compile 'com.android.support:appcompat-v7:24.1.1'
**compile "com.android.support:support-v4:24.1.1"**
compile 'com.android.support:design:24.1.1
但仍然出現了錯誤。我在互聯網上找到了很多答案。但沒有任何幫助。使用帶有API 19的新工具欄有問題嗎?
只是想指出的是, 「支持設計」依賴包括v 4和v7庫(如果你想縮小這個問題) –
面臨同樣的問題,你能解決它嗎? – Jaydev