AndResGuard
AndResGuard copied to clipboard
constraintlayout Flow 混淆后失效
资源混淆打包后 <androidx.constraintlayout.helper.widget.Flow> 布局失效
app:constraint_referenced_ids
里直接写的是id的字符串,初始化后会通过getIdentifier来反射查找叫该名字的id。所以要么不要混淆app:constraint_referenced_ids
里的id,要么通过代码setReferencedIds
来设置id。