We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
It has some issue when debugger is off, i cannot select picture.
also when i release the app , it dosent work
The text was updated successfully, but these errors were encountered:
I had same issue, I solved it this way after too much researches. Inject to your project: https://www.npmjs.com/package/base-64
Index.js
/** * @format */ import {AppRegistry} from 'react-native'; import App from './App'; import {name as appName} from './app.json'; import { decode, encode } from 'base-64'; if (!global.btoa) { global.btoa = encode; } if (!global.atob) { global.atob = decode; } AppRegistry.registerComponent(appName, () => App);
Sorry, something went wrong.
No branches or pull requests
Hello,
It has some issue when debugger is off, i cannot select picture.
also when i release the app , it dosent work
The text was updated successfully, but these errors were encountered: