Some applications, or most of them, have a silent or silent "silent install" option, which is to install an application without the user or support team needing interact with that application in your installation.
I started working on a third-party application, which has the following related permission:
<uses-permission android:name="android.permission.INSTALL_PACKAGES" />
By default Eclipse issues the following error:
Permission is only granted to system apps.
What should be considered when creating a silent app for Android outside the Google Play Store ? Why does this type of error occur?