通过电线进行React Native iOS构建安装,但不通过ipa文件进行安装

时间:2019-02-23 17:03:45

标签: ios xcode reactjs firebase react-native

我正在使用Xcode 10.1和iOS 12.1 另外,我在我的项目上使用Firebase Firestore。

当我通过xcode通过电线将其安装在设备上时,我已经完成了所有Provisiong配置文件过程和应用程序的正常运行,但是当我成功进行归档并构建并通过https://www.diawi.com/安装ipa文件时,它会安装70%,然后图标变黑,停止安装。请有人指导我。我做错什么了吗?

这是我的豆荚

platform :ios, '12.1'

target 'ebikes' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for ebikes

  # Required by RNFirebase
  pod 'Firebase/Core'

  # [OPTIONAL PODS] - comment out pods for firebase products you won't be using.
  pod 'Firebase/AdMob'
  pod 'Firebase/Auth'
  pod 'Firebase/Database'
  pod 'Firebase/DynamicLinks'
  pod 'Firebase/Performance'
  pod 'Firebase/Firestore'
  pod 'Firebase/Messaging'
  pod 'Firebase/RemoteConfig'
  pod 'Firebase/Storage'

  pod 'Fabric', '~> 1.7.6'
  pod 'Crashlytics', '~> 3.10.1'


  pod 'React', :path => '../node_modules/react-native', :subspecs => [
    'Core',
    'RCTActionSheet',
    'RCTAnimation',
    'RCTGeolocation',
    'RCTImage',
    'RCTLinkingIOS',
    'RCTSettings',
    'RCTVibration',
    'CxxBridge', # Include this for RN >= 0.47
    'DevSupport', # Include this to enable In-App Devmenu if RN >= 0.43
    'RCTText',
    'RCTNetwork'
    ]

  pod 'yoga', path: '../node_modules/react-native/ReactCommon/yoga'

  # pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  pod 'RNShare', :path => '../node_modules/react-native-share'

  pod 'RNI18n', :path => '../node_modules/react-native-i18n'



end

0 个答案:

没有答案