I created an app using react native, I have tested it on my IOS devices by connecting them with xcode, but now i want to share myApp with others to test it. To do that I generated myApp.ipa file by archiving, simply I just navigate to Product -> Application -> myapp, after archive is done, i copied the file to a folder named Payload after compressing the file, changed the Payload.zip to myApp.ipa after that I upload it to the Diawi website then got the link, installed the app on my ios device but unfortunately i cant run it? myApp is shaded with black, and nothing is there in Setting -> General -> Profiles. what did i do wrong? or if there is a simple way to let other test myApp.ipa please share.
Cant run myApp.ipa after installing it from Diawi
3.2k Views Asked by othman safadi At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in REACT-NATIVE
- React Native: detect if UIVisualEffectView is supported
- Prevent Chrome debugger from stealing focus in React Native
- React-native upload image to amazons s3
- react-native update NavigatorIOS component's props
- promise – can't find variable process
- Using React Native within existing iOS app for some views only
- What is a good approach to building and distributing a React Native iOS component that extends iOS functionality?
- error in xcode 6 "is not registered as a URL scheme. Please add it in your Info.plist"
- DeviceEventEmitter stops emitting events to application when screen locked
- How to rename react-native entry file (index.ios.js)
- react-native component lifecycle methods not firing on navigation
- How to use comments in React
- react-native propagate changes in props through ListView and Navigator
- How do i use the iOS shake gesture with react native?
- TouchableHighlight won't accept press events while keyboard is open
Related Questions in IPA
- Alter Minimum OS Version of IPA without XCode, iOS 8+
- How to serve my own iOS ipa (ipad install) file?
- how to check IOS devices supported by my IPA file
- Watchkit failed to upload to App Store
- CocoaPods won't install on device?
- How to build an iOS binary without setting an Apple Developer account and team?
- Xcode and Distribution .ipa application provisioning profiles
- Creating distribution IPA without giving access to an Apple Developer account
- Re-sign .ipa with less or more devices
- gradle task create IPA
- Create an IPA file with ionic
- gradle task Ipa stopped at 88%
- Xcode creates wrong IPA folder structure
- How to create ipa in xcode 6 without Apple Developer account?
- Find if an ipa file is 32 or 64-bit. (macos/unix)
Related Questions in DIAWI
- decrypt IPA data like, app name, version, icon etc [MVC C#]
- Upload generated .apk into Diawi using script
- Trying to share an iOS .app file but it crashes as soon as it starts. Also I see a blocked symbol on my .app file
- Developer mode required for installing
- Can't upload ipa to diawi.com
- iOS App Crashes when installed remote/diawi but not if installed from xcode
- How to Resolve IOS App Crash just in Diawi App
- ERROR: File 'filename.diawilink' does not exist jenkins android
- How to create ipa file in flutter for testing purpose?
- Cant run myApp.ipa after installing it from Diawi
- How to get app download link from Diawi on Laravel
- Troubleshooting remote installs of .ipa
- "ERROR: File 'DIAWI_LINKS' does not exist" Jenkins Android
- iOS-Not able to install enterprise app on few devices
- how to upload .zip on diawi
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?
Your app is blacked out because the iOS device won't run any unsigned apps. Your app cannot be signed without a provisioning profile.
You cannot install an app on an iOS device without a provisioning profile. The only way to get a provisioning profile is to have either a paid developer account or an enterprise account.
To install an app on an iOS device without submitting to the app store requires use of either an
ad-hocorenterpriseprovisioning profilead-hoc
The only way to get an
ad-hocprovisioning profile is to have a paid developer account. $99 per year. https://developer.apple.com/programs/ad-hocprofiles have limits to the number of different devices that they can be installed on.enterprise
The only way yo get an
enterpriseprovisioning profile is to have an enterprise account. $299 per year https://developer.apple.com/programs/enterprise/enterpriseprofiles don't have the same restrictions on the number of devices asad-hocprofiles but you cannot submit to the app-store with an enterprise account.