Dzmitry Lukyanenka

Results 1 comments of Dzmitry Lukyanenka

If you need only decode apk than quick solution: brut.androlib.res.data.value.ResValueFactory#ResScalarValue ``` //if (ResTypeSpec.RES_TYPE_NAME_STYLES.equals(resTypeName)) { if (resTypeName != null && resTypeName.startsWith(ResTypeSpec.RES_TYPE_NAME_STYLES)) { return new ResStyleValue(parentVal, items, this); } ``` For me...