The update will perform a check of the "device" before updating through the istruction present in file:
META-INF\com\google\android\updater-script
first line:
GetProp ('ro.product.device') == 'HM2013023' || abort (' This package is for \ 'HM2013023 \' devices; this is a \ '' + GetProp ('ro.product.device') + '\'. ');
This information is in the file build.prop line
ro.product.device = HM2013023
If you install a custom ROM this value can be different as in your case, and the installation fails.
Change the build.prop or modify updater-script Commenting first line.
Hi!
Thanks a lot for your answer. I already found the file you mentioned (updater-script).
First, I tried by delting the first line
GetProp ('ro.product.device') == 'HM2013023' || abort (' This package is for \ 'HM2013023 \' devices; this is a \ '' + GetProp ('ro.product.device') + '\'. ');
But after trying to install the ROM, a new error called
"E:failed to verify whole-file signature
E:signartue verfification failed
Installation aborted"
How do I change the file correct?
Thanks in advance