Problems installing programmatically an application with INSTALL_PACKAGES permission from / system / app

I try to install the application programmatically without user interaction and I get this error

SecurityException: Neither user 10057 nor current process has android.permission.INSTALL_PACKAGES 

My installer is located in / system / app on the root phone, the "Install non-market applications" checkbox is selected, the installer has permission

 <uses-permission android:name="android.permission.INSTALL_PACKAGES"/> 

This is my call function.

  private void puk(Context context) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException{ String fileName = PAKAGE_FILE_NAME ; String dir_type = Environment.DIRECTORY_DOWNLOADS; File dir= Environment.getExternalStoragePublicDirectory(dir_type); java.io.File file = new java.io.File(dir ,fileName); Uri packageUri = Uri.fromFile(file); PackageManager pm = context.getPackageManager(); Class<? extends PackageManager> o = pm.getClass(); Method[] allMethods=o.getMethods(); for (Method m : allMethods) { if (m.getName().equals("installPackage")) { Log.e(TAG, "installing the app.." ); m.invoke(pm,new Object[] { packageUri, null, 1, "com.mic.zapp"}); break; } } } 

I get this error

  11-15 02:46:23.320: W/System.err(10848): java.lang.reflect.InvocationTargetException 11-15 02:46:23.330: W/System.err(10848): at java.lang.reflect.Method.invokeNative(Native Method) 11-15 02:46:23.330: W/System.err(10848): at java.lang.reflect.Method.invoke(Method.java:507) 11-15 02:46:23.330: W/System.err(10848): at com.mic.pvtapi.PvtApiReflectActivity.puk(PvtApiReflectActivity.java:56) 11-15 02:46:23.330: W/System.err(10848): at com.mic.pvtapi.PvtApiReflectActivity.onCreate(PvtApiReflectActivity.java:28) 11-15 02:46:23.330: W/System.err(10848): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047) 11-15 02:46:23.330: W/System.err(10848): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1722) 11-15 02:46:23.330: W/System.err(10848): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1784) 11-15 02:46:23.330: W/System.err(10848): at android.app.ActivityThread.access$1500(ActivityThread.java:123) 11-15 02:46:23.330: W/System.err(10848): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:939) 11-15 02:46:23.330: W/System.err(10848): at android.os.Handler.dispatchMessage(Handler.java:99) 11-15 02:46:23.330: W/System.err(10848): at android.os.Looper.loop(Looper.java:130) 11-15 02:46:23.330: W/System.err(10848): at android.app.ActivityThread.main(ActivityThread.java:3835) 11-15 02:46:23.330: W/System.err(10848): at java.lang.reflect.Method.invokeNative(Native Method) 11-15 02:46:23.330: W/System.err(10848): at java.lang.reflect.Method.invoke(Method.java:507) 11-15 02:46:23.330: W/System.err(10848): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:847) 11-15 02:46:23.330: W/System.err(10848): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:605) 11-15 02:46:23.330: W/System.err(10848): at dalvik.system.NativeStart.main(Native Method) 11-15 02:46:23.330: W/System.err(10848): Caused by: java.lang.SecurityException: Neither user 10057 nor current process has android.permission.INSTALL_PACKAGES. 11-15 02:46:23.340: W/System.err(10848): at android.os.Parcel.readException(Parcel.java:1322) 11-15 02:46:23.340: W/System.err(10848): at android.os.Parcel.readException(Parcel.java:1276) 11-15 02:46:23.340: W/System.err(10848): at android.content.pm.IPackageManager$Stub$Proxy.installPackage(IPackageManager.java:2037) 11-15 02:46:23.340: W/System.err(10848): at android.app.ContextImpl$ApplicationPackageManager.installPackage(ContextImpl.java:2613) 

I read that ti can get INSTALL_PAKAGES permissions in two ways: sign the application using the firmware key or put the application in the firmware. My application starts from / system / app to get privileges.

Does anyone know what is wrong and give me some advice? Thanks

EDIT:

One step forward, two steps back

I added a new permission for the application

  <permission android:name="com.mic.pvtapi.permission.INS_AP" android:label="etichetta_perm" android:protectionLevel="signatureOrSystem" /> <uses-permission android:name="com.mic.pvtapi.permission.INS_AP"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 

more mistakes

 Neither user 10057 nor current process has android.permission.INSTALL_PACKAGES 

but new

  11-15 19:43:58.895: I/ActivityManager(1838): Displayed com.mic.pvtapi/.PvtApiReflectActivity: +421ms 11-15 19:43:58.955: D/dalvikvm(4008): GC_EXPLICIT freed 3K, 51% free 2681K/5379K, external 0K/0K, paused 132ms 11-15 19:43:58.955: W/ActivityManager(1838): No content provider found for: 11-15 19:43:58.955: E/PackageManager(1838): Couldn't create temp file for downloaded package file. 11-15 19:43:58.955: W/dalvikvm(1838): threadid=13: thread exiting with uncaught exception (group=0x40018560) 11-15 19:43:58.965: E/AndroidRuntime(1838): *** FATAL EXCEPTION IN SYSTEM PROCESS: PackageManager 11-15 19:43:58.965: E/AndroidRuntime(1838): java.lang.NullPointerException 11-15 19:43:58.965: E/AndroidRuntime(1838): at com.android.server.PackageManagerService$FileInstallArgs.createCopyFile(PackageManagerService.java:5247) 11-15 19:43:58.965: E/AndroidRuntime(1838): at com.android.server.PackageManagerService$FileInstallArgs.copyApk(PackageManagerService.java:5255) 11-15 19:43:58.965: E/AndroidRuntime(1838): at com.android.server.PackageManagerService$InstallParams.handleStartCopy(PackageManagerService.java:5051) 11-15 19:43:58.965: E/AndroidRuntime(1838): at com.android.server.PackageManagerService$HandlerParams.startCopy(PackageManagerService.java:4902) 11-15 19:43:58.965: E/AndroidRuntime(1838): at com.android.server.PackageManagerService$PackageHandler.doHandleMessage(PackageManagerService.java:516) 11-15 19:43:58.965: E/AndroidRuntime(1838): at com.android.server.PackageManagerService$PackageHandler.handleMessage(PackageManagerService.java:461) 11-15 19:43:58.965: E/AndroidRuntime(1838): at android.os.Handler.dispatchMessage(Handler.java:99) 11-15 19:43:58.965: E/AndroidRuntime(1838): at android.os.Looper.loop(Looper.java:130) 11-15 19:43:58.965: E/AndroidRuntime(1838): at android.os.HandlerThread.run(HandlerThread.java:60) 11-15 19:43:58.975: I/Process(1838): Sending signal. PID: 1838 SIG: 9 11-15 19:43:59.005: I/ServiceManager(1637): service 'SurfaceFlinger' died 

make my phone crash, freez and reboot

+12
android installation permissions permission-denied
Nov 15 '11 at 2:11
source share
4 answers

Refer to signatureOrSystem authority on user ROM

Basically,

  • add the required <uses-permission>
  • push apk to / system / priv-app

Done (well, at least it works for me).

You do not need to add android: protectionLevel = "signatureOrSystem" or android: sharedUserId = "android.uid.system". You can sign up with any certification.

+3
Apr 09 '15 at 9:06
source share
β€” -

I assume that placing it in the / system / app folder is not equivalent to downloading it to the firmware.

+1
Jan 13 '12 at 18:12
source share

About the error:

 SecurityException: Neither user 10057 nor current process has android.permission.INSTALL_PACKAGES 

To get INSTALL_PACKAGES permission:

  • Put your application in / system / app
  • Sign the application using the system key
  • In the manifest.xml file, place this attribute inside the tag manifest:

     <manifest android:sharedUserId="android.uid.system" ... 
0
02 Feb '12 at 9:21
source share

Running these two lines resolves the problem with the PackageManager permission error: "Failed to create temp file for downloaded package file."

 adb shell chown system.shell /data/app adb shell chown system.shell /data/local 
0
Mar 15 '16 at 11:25
source share



All Articles