문제

I am working on Blackberry 10 App using webworks and I want to get the device IMEI number using webworks. I did not find any solution to get IMEI number on internet.

도움이 되었습니까?

해결책 2

In javascript include this code

function functionName()
        {
            var transportList = blackberry.identity;
            IMEI_No = transportList.IMEI;
        }

and in config file include

<feature id="blackberry.identity" />

This will return the Imei number.

다른 팁

Check out the Identity API - https://developer.blackberry.com/html5/apis/blackberry.identity.html

It will return the IMEI and the UUID.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top