AutoGo
AutoGo copied to clipboard
Serializable序列化对象无法传递
To solve this problem, add this code at the end of the method getData(Intent intent, String key, Class clz, Object defValue) of autogo.utils.IntentUtils: else if (Serializable.class.isAssignableFrom(clz)) { return checkNull(intent.getSerializableExtra(key), defValue); }