Flutter 编译release版本 error: resource android:attr/dialogCornerRadius not found.

 Output:  
 error: resource android:attr/dialogCornerRadius not found.
 error: resource android:attr/dialogCornerRadius not found.
 error: resource android:attr/fontVariationSettings not found.
 error: resource android:attr/ttcIndex not found.
 error: failed linking references.

编译Debug版本正常,release版本AS提示错误 百度一圈也没有找到合适的办法

后面发现错误的配置了gradle.properties

org.gradle.jvmargs=-Xmx1536M

android.enableJetifier=true

android.useAndroidX=true

删除掉下面代码 编译通过 

android.enableJetifier=true
android.useAndroidX=true

你可能感兴趣的:(Flutter)