geeks-r-us / anbox-playstore-installer

Install script that automates installation of googles playstore in anbox
MIT License
655 stars 155 forks source link

OpenGApps version change silently stops installer script #42

Closed cmor3 closed 4 years ago

cmor3 commented 4 years ago

The installer script sets up a variable for opengapps with the "mini" version specified. However, there is no mini version available on the opegapps sourceforge download site so the script fails silently. The two versions available are tvstock and pico. I replaced "mini" in the variable def to "pico" and the script finished successfully. I don't know if there are any "mini" files available, but I wasn't able to find any. This was in the x86_64 section, fwiw.

Fanna1119 commented 4 years ago

I also realised this. I changed the url of the code to the following. (I found the URL for mini via https://opengapps.org/)

OPENGAPPS_RELEASEDATE="20200127" OPENGAPPS_FILE="open_gapps-x86_64-7.1-mini-$OPENGAPPS_RELEASEDATE.zip" OPENGAPPS_URL="https://tenet.dl.sourceforge.net/project/opengapps/x86_64/$OPENGAPPS_RELEASEDATE/$OPENGAPPS_FILE"

geeks-r-us commented 4 years ago

fixed with #43