Android APK path is not specified for module

后端 未结 5 2413
灰色年华
灰色年华 2021-01-31 21:18

I have a problem. When i try to launch my project i\'ve got error :

\"ERROR: APK path is not specified for module\"  

I follow to this answer A

5条回答
  •  广开言路
    2021-01-31 21:30

    If you are running a 64-bit distribution on your development machine, you need to install additional packages first. For Ubuntu 13.10 (Saucy Salamander) and above, install the libncurses5:i386, libstdc++6:i386, and zlib1g:i386 packages using apt-get:

    sudo dpkg --add-architecture i386
    sudo apt-get update
    sudo apt-get install libncurses5:i386 libstdc++6:i386 zlib1g:i386
    

    For earlier versions of Ubuntu, install the ia32-libs package using apt-get:

    apt-get install ia32-libs
    

提交回复
热议问题