The file is in the build->outputs->apk folder from a project I built in Android Studio. What I've done prior to sending that file is open Run/Debug configurations, chose the gradle project and task "assemble", then Apply, Ok, and run the project.
Asked
Active
Viewed 661 times
0
-
Does the phone have the Unknown sources option checked ? – Ahmed Abidi Dec 22 '16 at 17:27
-
I am flagging to close this question as it is **too broad**. Please provide more specific information on the issue you are seeing as well as any relevant code – Ed Holloway-George Dec 22 '16 at 17:28
1 Answers
2
Android requires that all APKs be digitally signed with a certificate before they can be installed.
https://developer.android.com/studio/publish/app-signing.html
This has instructions for how to sign the unsigned application.
The official documentation does not say anything about whether allowing unknown sources permits unsigned applications to be installed, but this question suggests this is the case: What is the differences between `export signed` and `unsigned` .apk file?