AndroidXに対応したのですが、下記エラーが発生しました。
This project uses AndroidX dependencies, but the 'android.useAndroidX' property is not enabled. Set this property to true in the gradle.properties file and retry.
そこでgradle.propertiesに下記を追記しました。
android.useAndroidX=true android.enableJetifier=true
すると下記エラーが発生しました。
Cannot parse project property android.useAndroidX='ture' of type 'class java.lang.String' as boolean. Expected 'true' or 'false'.
上記エラーがなぜ発生するのかご教示願います。
・調べたこと
Googleで調べても下記情報しか見つけることができませんでした。
https://stackoverflow.com/questions/63969414/cannot-parse-project-property-android-enablejetifier-true-of-type-class-java
回答1件
あなたの回答
tips
プレビュー