answered
2014-10-25 03:05:08 +0200
First, make sure you have nano installed on your Jolla. If it isn’t there, install it with:
pkcon install nano
Complete disabling (prevent Android apps to start)
devel-su
<password>
systemctl stop aliendalvik.service
systemctl mask aliendalvik.service
To re-enable it:
# systemctl unmask aliendalvik.service
# systemctl start aliendalvik.service
Disabling the Alien Dalvik at startup (it will start when you want to)
From the terminal:
devel-su
<password>
nano /etc/systemd/system/nodroidavvio.service
In nano paste:
[Unit]
After=aliendalvik.service
Description=No Android al riavvio
[Service]
Type=oneshot
RemainAfterExit=no
ExecStart=/bin/systemctl stop aliendalvik.service
[Install]
WantedBy=multi-user.target
Close and save by pressing CTRL+X and within the terminal prompt:
# systemctl enable nodroidavvio.service
To re-enable the Alien Dalvik at startup:
# systemctl disable nodroidavvio.service
thanks to @iliveinpublic and @eugenio_g7 for the tips.