[SOLVED] Native Component RCTSingleLineTextInputView does not exists

i was trying publish app in appstore, but apple found a bug.

We discovered one or more bugs in your app when reviewed on iPad running iOS 11.2.6 on Wi-Fi connected to an IPv6 network.

We received an error message on login.

How i can fix it?

app: Люди дела on Expo

app.json

{
  "expo": {
    "sdkVersion": "25.0.0",
    "android": {
      "package": "com.menofact.app"
    },
    "icon":"pics/icon1024x1024.png",
    "name": "Люди дела",
    "slug": "menofact",
    "version": "0.5.0",
    "isDetached": false,
    "description":"Это приложение создано для большего удобства Профессионалов и Предпринимателей желающих содержать в одном месте определенные инструменты, которые использует каждый развивающийся человек. Смысл его - в объединении важных функций жизни успешного человека, для удобства и скорости работы с ключевой информацией, задачами и целями в собственной жизни.",
    "orientation":"portrait",
    "notification":{
      "icon":"pics/notify.png",
      "color":"#FFFFFF"
    },
    "androidStatusBar":{
      "backgroundColor":"#111"
    },
    "ios": {
      "bundleIdentifier": "com.menofact.app"
    },
    "detach": {
      "scheme": "exp2c132e00adae42399ed033ce12ecfc86",
      "androidExpoViewUrl": "https://s3.amazonaws.com/exp-exponent-view-code/android-v2.3.0-sdk25.0.0-0c32461b-a7c6-4ddc-b85b-32a80c4f18d9.tar.gz"
    }
  }
}

package,json:

{
  "name": "moa",
  "version": "0.1.0",
  "private": true,
  "devDependencies": {
    "babel-preset-react-native-stage-0": "^1.0.1",
    "jest-expo": "25.0.0", 
    "react-test-renderer": "16.0.0"
  },
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "test": "node node_modules/jest/bin/jest.js --watch"
  },
  "jest": {
    "preset": "jest-expo"
  },
  "dependencies": {
    "@expo/vector-icons": "^6.2.2",
    "crypto": "^1.0.1",
    "expo": "^25.0.0",
    "prop-types": "^15.6.0",
    "react": "16.0.0",
    "react-native": "https://github.com/expo/react-native/archive/sdk-25.0.0.tar.gz",
    "react-native-datepicker": "^1.6.0",
    "react-native-extended-stylesheet": "^0.8.0",
    "react-native-fetch-blob": "^0.10.8",
    "react-native-onesignal": "^3.0.9",
    "react-native-scripts": "^1.11.1",
    "react-navigation": "^1.0.0-beta.27",
    "request": "^2.83.0",
    "socket.io-client": "^2.0.4"
  }
}

just need to update modules…

  1. npm update
  2. delete node_modules
  3. npm install
  4. rebuild
1 Like

Glad you got it figured out! :slight_smile:

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.