编译报错问题修复

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1 编译报错 android:attr/ttcIndex & android:attr/fontVariationSettings not found 

解决:升级 compile sdk 和 target sdk 到28即可

Error : Program type already present: android.support.design.widget.CoordinatorLayout$Behavior

解决,将support 和 design 库的版本和compile sdk一致即可

implementation 'com.android.support:support-v4:28.0.0'

implementation 'com.android.support:design:28.0.0'

 

转载于:https://my.oschina.net/yhcocacoder/blog/2873090

你可能感兴趣的:(编译报错问题修复)