AndroidXのmaterial:1.1.0-alpha08にアップデートしたらビルドエラー
AndroidXでBottomNavigationViewを使おうとしたら、
ビルドエラーになって悩んだのでメモ。
経緯
androidx のBottomNavigationViewの調査のため、
com.google.android.material:material を 1.1.0-alpha08 にアップデートしたら、エラー。
Error: Invoke-customs are only supported starting with Android O (--min-api 26)
というエラーになるが、そもそも関係なかったorz
解決策
Javaのバージョンを上げるだけ。
エラーの内容は全く関係がないので、だいぶはまった。
android {
・・・
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
おわり
Author And Source
この問題について(AndroidXのmaterial:1.1.0-alpha08にアップデートしたらビルドエラー), 我々は、より多くの情報をここで見つけました https://qiita.com/pongi/items/02596f6990f63a7fb4db著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .