version:3.6
fix:去点腾讯推送 update:去掉系统节点
This commit is contained in:
@@ -23,15 +23,15 @@ public class DesktopIcon implements Serializable, Parcelable {
|
||||
}
|
||||
|
||||
private DesktopIcon(Parcel in) {
|
||||
packageName = in.readStringNoHelper();
|
||||
lable = in.readStringNoHelper();
|
||||
packageName = in.readString();
|
||||
lable = in.readString();
|
||||
position = in.readInt();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeToParcel(Parcel dest, int flags) {
|
||||
dest.writeStringNoHelper(packageName);
|
||||
dest.writeStringNoHelper(lable);
|
||||
dest.writeString(packageName);
|
||||
dest.writeString(lable);
|
||||
dest.writeInt(position);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user