Error [INSTALL_FAILED_INVALID_URI] in GCC

0

I already did everything, I installed GCC C4droid by the Google Store, I already installed the Android Terminal Emulator and also already root and I released the access to $su . But when I try to install GCC using the command PM install GCC it appears written pkg: gcc; Failure[INSTALL_FAILED_INVALID_URI] . If anyone knows of any solution.

  

apt-get and the site about installing NDK and SDk on the Android site is not right.

    
asked by anonymous 21.01.2016 / 21:35

1 answer

1

I once had the same problem installing a APK pelo shell android .

  • Primeiro erro que eu consegui foi: INSTALL_FAILED_INVALID_URI

    $ pm install myApp.apk
        pkg: myApp.apk
    Failure [INSTALL_FAILED_INVALID_URI]
    
  • This is because you need to give the full path to apk, like:

    $ pm install /sdcard/myApp.apk
    
  

Do the following:

  • Refactor - > Rename
  • Project - > Clean
  • Create a "clean" copy of your project.

        
    21.01.2016 / 22:40