1

I am running CM11(Nightly) on my Galaxy Tab P1000 and I cannot remove the camera app that came with it. I have tried the following command-:

adb shell rm -f /system/app/camera2.apk

But this has absolutely no effect. Please advise on how to remove the camera app because it is not working properly.

Heidi
  • 43
  • 7

1 Answers1

1

Okay I figured out how to do this. It seems since I didn't have root permission on the app therefore I was not able to delete it.

I did the following-:

  1. First I set up ADB on Windows.
  2. Connected my device
  3. Typed in adb root
  4. adb remount
  5. adb shell
  6. su
  7. chmod 777 /system/app/Camera2.apk
  8. rm -f /system/app/Camera2.apk

And voila I could delete the app.

Heidi
  • 43
  • 7