A developer is building an app for me and he need my ID so that he can send the APK file so that I can test the app. The developer need my UDID so that he can send me the APK file. So how do I go about finding my UDID from my android?
Asked
Active
Viewed 4.1k times
5
-
1I wonder if he is hard coding it in his app to prevent you from distributing the APK. – Kris Krause Jan 20 '16 at 21:57
-
1UDID is an iOS thing. It doesn't exist on Android. There is the device id, which is similar. – Gabe Sechan Jan 20 '16 at 21:57
-
Android docs - http://developer.android.com/reference/android/telephony/TelephonyManager.html#getDeviceId%28%29 – Kris Krause Jan 20 '16 at 21:59
-
Your developer could easily send you the apk file in multiple other ways that don't require your device's id. Check out this doc: http://developer.android.com/distribute/tools/open-distribution.html – Alvin Abia Jan 20 '16 at 22:00
1 Answers
2
Android phones don't use a udid. That is something for iPhones and apples provisioning system. In this case you need to find in your advanced options where you can allow the install of unknown APK's and then the file your developer sends can be installed.

Jonathan McCarver
- 29
- 1