"App not installed" error after building android app
See original GitHub issueafter I ran expo build:android
i got the apk file built successfully but when I try to install it in many devices, it is not being installed and it shows “App not installed” error.
and here is my package.json:
{ “name”: “some-app”, “main”: “node_modules/expo/AppEntry.js”, “private”: true, “scripts”: { “start”: “expo start”, “android”: “expo start --android”, “ios”: “expo start --ios”, “eject”: “expo eject” }, “dependencies”: { “axios”: “^0.18.0”, “expo”: “^31.0.2”, “react”: “16.5.0”, “react-native”: “https://github.com/expo/react-native/archive/sdk-31.0.0.tar.gz”, “react-navigation”: “^3.1.2”, “react-redux”: “^6.0.0”, “redux”: “^4.0.1”, “redux-persist”: “^5.10.0” }, “devDependencies”: { “babel-preset-expo”: “^5.0.0” } } `
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
How to Fix 'App Not Installed' Error on Android? (2022) - DigitBin
Top Ways to to Fix APK Not Installing Error · 1. Change App Codes · 2. App Bundles APKs · 3. Disable Google...
Read more >'App not Installed' Error on Android - Stack Overflow
To disable Google Play Protect. Open "Play Store" application => tap on Menu button => select "Play Protect" option => Disable the options...
Read more >How To Fix “App Not Installed” Error On Android [15 Ways]
Restart Your Android; Check App Location; Use Only Google Play Store; Clear Data And Cache Of Package Installer; Sign The Unsigned App; Disable ......
Read more >How to Fix Android App Not Installed Problem App ... - YouTube
Chapters. View all · Step 1 Google Play Services · Step 1 Google Play Services · Step 1 Google Play Services · Step...
Read more >App not installed error in Android - Fix - YouTube
app not installed error androidApp not installedThe app was not installedCan not install the app on your devicethis app cannot be installed ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
the problem was in the android packager name in my app.json
so it was like that:
“package”: “com.<myName>.<appName>” i replaced myName with the appName like that :
“package”: “com.<appName>.<appName>” and it worked like a magic and I was able to successfully build and install the app on multiple devices
Awesome! Thanks for sharing the solution here 😄