1
Some applications or most of them have an "unassisted" or silent installation option, known as Silent install, which is to install an application without the user or support team needing to interact with that application in your installation.
I started working on a third application, in which you have the following related permission:
<uses-permission android:name="android.permission.INSTALL_PACKAGES" />
By default the Eclipse issues the following error:
Permission is only granted to system apps.
What should be considered when creating a silent application for Android outside the Google Play Store? 'Cause that kind of mistake happens?
By the message, it seems that it will only work if the app has root permissions on the system, which for most users will not occur. In some apps that need this, they usually issue an alert telling us to "allow unknown sources", and then install.
– user28595
@diegofm thanks for the comment. Clarified me some things that I had not yet understood.
– viana