played around with EasySettings today and I really like it. Found a crash when HeaderSettingsObject is the first element in array. To reproduce use:
mySettingsList = EasySettings.createSettingsArray(
new HeaderSettingsObject.Builder("this will cause index of bound")
.build(),
new CheckBoxSettingsObject.Builder("checkBoxKey", "checkbox title", false)
.setSummary("checkbox summary")
.addDivider()
.build());
Hello,
played around with EasySettings today and I really like it. Found a crash when HeaderSettingsObject is the first element in array. To reproduce use: