Reputation: 9
I am new to android. I have made an application (API 23) which work fine in emulator but when I try to installed in real mobile, shows the message "Apps not installed" Please reply my query based on the following points:
So please help me out by giving me the solution.
App is transferred to the phone which is about 0.5 MB. but it shows the message "Apps not installed" My question is how to install this app file in mobile which is transferred from C:\Users\User\AndroidStudioProjects\SimpleApp\app\build\outputs\apk\debug\app-debut.apk file to mobile. I don't want to upload the app on googleplay. Any how want to give the app to my friend Circle.
Upvotes: 0
Views: 98
Reputation: 659
You should manually sign your APK.
In Android Studio click Build
and then Generate Signed APK
Check the developer documentation under "Manually sign an APK" from the link https://developer.android.com/studio/publish/app-signing.html
Upvotes: 1