I'm using Crashlytics Beta to distribute apps for testing. Every time someone signs up with a new device, I get an email with their UDID. It's tedious to add 100 UDIDs one by one. Is there a way to export all UDIDs that aren't already on my provisioning profile?
Does Crashlytics Beta have a way to export all *new* UDIDs?
480 Views Asked by Rob At
2
There are 2 best solutions below
0
Mike Bonnell
On
Mike from Fabric here. When distributing the next build that has a tester whose UDID we now have, but didn't previously, there is a way to get all UDIDs from the Fabric macOS app. When doing your next distribution, after selecting the testers, there should be a .csv file present with the UDIDs needed for your testers.
Related Questions in CRASHLYTICS
- Can a project using Crashlytics have a GoogleService-Info.plist file renamed to something else?
- Why don't debug symbols from my xcframework appear in the crash stack trace?
- Exact class name of Crash (Crashlytics)
- Java runtime error after migrating to Expo: Failure delivering result
- Crashlytics | android.view.WindowManager$BadTokenException
- Crashlytics is not deobfuscating my crash-report when obfuscated with a 3rd party obfuscation tool (not proguard, not r8)?
- I have added firebase crashlytics to my react native project and play store reject my app how to fix it?
- Firease Crashlytics positioned native crash method not match real crash method
- (Android) Crash a app by android.content.ActivityNotFoundException
- How do I debug this stacktrace from crashlytics
- flutter upgrader error - PlayStoreSearchAPI.lookupById returns null
- Flutter Firebase Crashlytics with flavors - XCode dSYM file upload script with dart-only initialization
- PhaseScriptExecution [firebase_crashlytics]\ Crashlytics\ Upload\ Symbols
- Override Library and File names in Craslytics Non-fatal error reports
- No such file or directory: 'FirebaseCrashlytics' in ui tests target
Related Questions in TWITTER-FABRIC
- Crashlytics/Fabric - Will my app crash after deleting Account / project?
- How to report/propagate Firestore errors with call site context to recordError
- Crashlytics migration for Firebase ruins Twitter functionality from Fabric
- Fabric Key For Twitter
- Disable crashlytics/Fabric at runtime in iOS
- “Fabric.framework” can’t be opened because it is from an unidentified developer Xcode
- Add testers via Firebase Crashlytics platform
- How does Fabric calculate the Time in App Engagement metric
- Crashlytics.logException method throwing illegal state exception. Not able to collect non-fatal issues for some activities
- Is there any downside to initializing Fabric & Crashlytics at the Application level?
- Twitter login is not working with crashlytics sdk. Error: Must start Twitter Kit with Fabric.with() first
- Crashlytics native crash symbols for multiple modules
- Migrate from Firebase Crashlytics to Fabric Crashlytics
- Using Firebase Crashlytics and Fabric Answers
- Does Crashlytics Beta have a way to export all *new* UDIDs?
Related Questions in CRASHLYTICS-BETA
- Crashes on iOS 14 beta showing <redacted> on desymbolication in Firebase crashlytics
- New crashlytics (com.google.firebase.crashlytics.FirebaseCrashlytics) not working anymore on non-Google Play devices?
- Android: Firebase Crashlytics SDK not finding fatal exceptions after restart
- Firebase/Crashlytics Version 4.0.0-beta.1 - ForceCrash?
- How can i disable distributions in Firebase App Distribution
- firebase_crashlytics - what triggers the upload of the report?
- How do I disable email notifications for Firebase App Distribution
- How to reinstall the Crashlytics Beta profile on a device
- java.lang.IllegalStateException: Must Initialize Fabric before using singleton()
- Invite tester to use old versions with Crashlitycs Beta
- Flutter APK release build fails to upload to Fabric Beta
- Unable to include emojis in Crashlytics Beta release notes through fastlane
- Non-Fatal reports not logging
- How to install a Beta (Crashlytics) distributed application on Android TV
- Adding application doesn't proceed
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
AFAIK, Crashlytics does not provide a built-in mechanism for exporting all UDIDs.
In the meantime, I wrote a Python script that will merge UDID files into a single file for upload to the Apple Developer Portal. To collect the UDID files I make the assumption that you grab them all at once from an email client, but perhaps someone could write a filter that collects them over a period of time. So far, this is the easiest solution I've come up with.
Merge UDID Files: https://github.com/jarrodparkes/merge-udid-files