Hello,
I want to make my applicaton can only be installed on N95, E71.
what should I write in pkg file?
and
I found the Machine Uid list in http://wiki.forum.nokia.com/index.ph..._3rd_Ed.2C_FP1
but there is no id for E71.
thanks.
Hello,
I want to make my applicaton can only be installed on N95, E71.
what should I write in pkg file?
and
I found the Machine Uid list in http://wiki.forum.nokia.com/index.ph..._3rd_Ed.2C_FP1
but there is no id for E71.
thanks.
It is 0x2000249B. Check this: http://www.forum.nokia.com/devices/E71 (Search for ProductID in that page)
You will find Product Id of all the phones from here, generally. http://www.forum.nokia.com/devices/matrix_all_1.html
Now to restrict installation to only N95 and E71, do the following in your .pkg file.
Code:IF(MachineUID=0x2000060B OR MachineUID=0x2000249B) .... .... ;Install these files ENDIF
Nokia Developer Wiki Moderation team
Yes use machine UID, 0x2000249b is of E71.
thank you for reply.
if user try to install on other device, I want to put the error message.
is it possible?
thank you.
Of course it is possible.
See this article. http://wiki.forum.nokia.com/index.ph...n_installation
Code:IF(MachineUID=0x2000060B OR MachineUID=0x2000249B) .... .... ;Install these files ELSE ;Display warning message from file. See the link given above. ENDIF
Nokia Developer Wiki Moderation team