1

How do install android-studio from umake through snap? It seems to be a matter of umake usage...but the command looks correct.

thufir@dur:~$ 
thufir@dur:~$ snap install ubuntu-make
error: This revision of snap "ubuntu-make" was published using classic confinement and thus
       may perform arbitrary system changes outside of the security sandbox that snaps are
       usually confined to, which may put your system at risk.

       If you understand and want to proceed repeat the command including --classic.
thufir@dur:~$ 
thufir@dur:~$ 
thufir@dur:~$ snap install ubuntu-make --classic
ubuntu-make master from 'didrocks' installed
thufir@dur:~$ 
thufir@dur:~$ ubuntu-make.umake android
Segmentation fault (core dumped)
thufir@dur:~$ 

This appears to be the suggested method.

Thufir
  • 4,551

2 Answers2

2

In https://github.com/ubuntu/ubuntu-make

If you use the Ubuntu Make snap to ensure you always have the latest and greatest version, even on older supported releases.

  • Install:
    snap install ubuntu-make --classic
    

    Umake can then be run as ubuntu-make.umake

  • Run Ubuntu Make:
    snap run ubuntu-make.umake android
    
  • Hizqeel
    • 1,895
    JVS
    • 21
    0

    I believe this is no longer required, if you installed using

    snap install ubuntu-make --classic
    

    you then need to reboot your system so snap is in your path. After that you can simply run.

    umake android
    
    Goddard
    • 4,724
    • 2
    • 33
    • 51