[GAPPS][DAILY] Open GApps for Android; All Android Versions & Devices

Search This thread
Pixel 3a LineageOS 18.1 + open_gapps-arm64 Bootloop

@Nezorflame - FWIW two Pixel 3a users reported bootloop with Open GApps but working fine with MindTheGapps in the LineageOS subreddit here:

I have tried not restarting at all between installations, restarting to recovery, and booting completely before installing, and they all have the same problem. I'm going absolutely mad. What's going on? How can I fix this?

Pixel 3a Lineage OS 18.1-20211109-nightly open_gapps-arm64-11.0-micro-20211109

To which a LineageOS team member replied:

OpenGApps are hilariously broken, as they are every second week. Wipe the system and use MindTheGapps.

This is what happens when publishing untested builds. :(
***
 
  • Like
Reactions: Nezorflame
Moto G6 Plus LineageOS 18.1 + open_gapps-arm64 Bootloop "Can't load android system"

@Nezorflame - FWIW a Moto G6 Plus user (A/B device) reported failed to boot with open_gapps-arm64-11.0-nano-20211111.zip but working fine with MindTheGapps in the LineageOS subreddit here:

"After rebooting, I get the lineageos loading symbol, it loads for ages, before rebooting and going back to recovery. ...Can't load android system, your data may be corrupt."

Pixel 3a LineageOS 18.1 + open_gapps-arm64 Bootloop

@Nezorflame - FWIW two Pixel 3a users reported bootloop with Open GApps but working fine with MindTheGapps in the LineageOS subreddit here:

To which a LineageOS team member replied:

This is what happens when publishing untested builds. :(
***
 
  • Like
Reactions: Nezorflame
Broken Open GApps Builds Again!

Thanks, builds have been pulled, investigating the issue.

The era of publishing untested rolling releases of Open GApps is over.

Google is moving the goal posts all the time and that breaks stuff.

Better a monthly thoroughly tested release instead.

That's better for the reputation of Open GApps & also for the users instead of wasting their time with broken builds.
***
 
I am on android 10 and both 12th and 13th still crash on installation screen.

What do you mean by "installation screen"?

Is that in recovery or when booting to system or in the Setup wizard?

If it's in the Setup wizard, it's while doing what?

Device model? ROM? GApps package? Clean install of update?

Did you try Open GApps build 2021-11-05?
***
 
Black Screen in Setup Wizard

A clean install LineageOS 18.1 Xiaomi Mi 6 (sagit) + Open GApps Stock user reported here in the LOS sub:

"Older Open GApps packages still don't seem to work completely right, the one from 11-05-2021 gives me a black screen when I choose to recover a backup...."
***

I am on android 10 and both 12th and 13th still crash on installation screen.

Setup wizard when trying to go to google account screen it never makes it, it crashes.
Rom lineage 10.1, gaps pico 05/11/210 and clean install.
***
 
  • Like
Reactions: Nezorflame

ipdev

Recognized Contributor
Feb 14, 2016
2,546
1
5,159
Google Nexus 10
Nexus 7 (2013)
Hi all. :)

Long story short.

Looking for opinions on reversing the order of (or improving) the abi check.
OpenGApps - Github - Installer Script Line 1665 - Link

Reversing it (checking for cpu.abi first) should fix the wrong architecture being found on some devices.
Code:
device_architecture="$(get_prop "ro.product.cpu.abi")";
  if [[ -z $device_architecture ]]; then
    device_architecture="$(get_prop "ro.product.cpu.abilist")";
  fi;
I prefer looking for the newer prop first but, maybe this time it would be better looking for the older value first?

I have not tried it yet but, it should fix the architecture mismatch I recently ran into on my Poco F1.
The custom rom (used ro.product.cpu.abi) did not set ro.product.cpu.abilist in any of the prop files so OpenGApps set it from TWRP's default.prop.
Not sure if this affect other devices or not. :unsure:
First time I ran into it and I have wiped, formatted and flashed my Poco F1 many times.
Not sure why this only showed up now.


I am using the official TWRP for the Device from twrp.me
TWRP for Xiaomi Pocophone F1 - twrp.me - WebSite - Link
Code:
beryllium:/ # for i in $(find / -name 'default.prop' 2> /dev/null); do echo $i && cat $i | grep 'cpu.abi'; done;
/default.prop
# ro.product.cpu.abi and ro.product.cpu.abi2 are obsolete,
# use ro.product.cpu.abilist instead.
ro.product.cpu.abi=arm64-v8a
ro.product.cpu.abilist=armeabi-v7a,armeabi
ro.product.cpu.abilist32=armeabi-v7a,armeabi
ro.product.cpu.abilist64=
beryllium:/ #

Thoughts on including one of these values. 🙃
  • ro.vendor.product.cpu.abilist
  • ro.odm.product.cpu.abilist
  • ro.system.product.cpu.abilist
Code:
ro.vendor.product.cpu.abilist=arm64-v8a,armeabi-v7a,armeabi
ro.odm.product.cpu.abilist=arm64-v8a,armeabi-v7a,armeabi
ro.system.product.cpu.abilist=arm64-v8a,armeabi-v7a,armeabi

Cheers all. :cowboy:

Edit:
Dec. 15 2021 - Links to the PR and commit for reference.


OpenGApps - GitHub - Commit - Link
OpenGApps - GitHub - Pull request [# 944] - Link
 
Last edited:
  • Like
Reactions: curiousrom

Nezorflame

Senior Member
While I'm researching the reported issue, quick update to the A12 test package (only has apps updated to their SDK31 variant), package installer as well so apps should install fine.
Don't expect any serious work on A12 for now until we fix more important issues, but since it's already in a more or less working state, feel free to report anything you find so that I fix it when I have time.
ARM64 nano variant only for now: SourceForge
 

Nezorflame

Senior Member
Hi all. :)

Long story short.

Looking for opinions on reversing the order of (or improving) the abi check.
OpenGApps - Github - Installer Script Line 1665 - Link

Reversing it (checking for cpu.abi first) should fix the wrong architecture being found on some devices.
Code:
device_architecture="$(get_prop "ro.product.cpu.abi")";
  if [[ -z $device_architecture ]]; then
    device_architecture="$(get_prop "ro.product.cpu.abilist")";
  fi;
I prefer looking for the newer prop first but, maybe this time it would be better looking for the older value first?

I have not tried it yet but, it should fix the architecture mismatch I recently ran into on my Poco F1.
The custom rom (used ro.product.cpu.abi) did not set ro.product.cpu.abilist in any of the prop files so OpenGApps set it from TWRP's default.prop.
Not sure if this affect other devices or not. :unsure:
First time I ran into it and I have wiped, formatted and flashed my Poco F1 many times.
Not sure why this only showed up now.


I am using the official TWRP for the Device from twrp.me
TWRP for Xiaomi Pocophone F1 - twrp.me - WebSite - Link
Code:
beryllium:/ # for i in $(find / -name 'default.prop' 2> /dev/null); do echo $i && cat $i | grep 'cpu.abi'; done;
/default.prop
# ro.product.cpu.abi and ro.product.cpu.abi2 are obsolete,
# use ro.product.cpu.abilist instead.
ro.product.cpu.abi=arm64-v8a
ro.product.cpu.abilist=armeabi-v7a,armeabi
ro.product.cpu.abilist32=armeabi-v7a,armeabi
ro.product.cpu.abilist64=
beryllium:/ #

Thoughts on including one of these values. 🙃
  • ro.vendor.product.cpu.abilist
  • ro.odm.product.cpu.abilist
  • ro.system.product.cpu.abilist
Code:
ro.vendor.product.cpu.abilist=arm64-v8a,armeabi-v7a,armeabi
ro.odm.product.cpu.abilist=arm64-v8a,armeabi-v7a,armeabi
ro.system.product.cpu.abilist=arm64-v8a,armeabi-v7a,armeabi

Cheers all. :cowboy:
@osm0sis @mfonville WDYT?
I personally agree with this (and this is something @Nikhil suggested as well), so if there are no objections, might add this check.

BTW @ipdev feel free to post this kind of feedback/discussion on our Github as well, might be easier to communicate there.

Update: see https://github.com/opengapps/opengapps/pull/942 with this change.
 
Last edited:

osm0sis

Senior Recognized Developer / Contributor
Mar 14, 2012
16,767
40,430
Halifax
GT-i9250
Google Nexus 4

ronpaul-happening.gif
 
Testing Open GApps Packages Before Releasing Them


@Nezorflame - That's good. :cool: 👍

Next step, maybe be inspired by an other thing that MindTheGapps does: release new packages only once in a while after they are tested by actual humans.

If you look here and here the last 3 MindTheGapps-11 releases were on:

Mar 28, 2021

Apr 12, 2021

Sep 20, 2021 - That's the most recent @ the present.

Play Store and Play Services automatically update themselves in the background regardless of the user's update settings in Play Store so there is no reason to churn out daily untested releases and the apps are updated when you login Play Store: either manually or auto-updated if you choose so.

Broken Open GApps Builds Again!

The era of publishing untested rolling releases of Open GApps is over.

Google is moving the goal posts all the time and that breaks stuff.

Better a monthly thoroughly tested release instead.

That's better for the reputation of Open GApps & also for the users instead of wasting their time with broken builds.
***
 

ipdev

Recognized Contributor
Feb 14, 2016
2,546
1
5,159
Google Nexus 10
Nexus 7 (2013)
Testing Open GApps Packages Before Releasing Them



@Nezorflame - That's good. :cool: 👍

Next step, maybe be inspired by an other thing that MindTheGapps does: release new packages only once in a while after they are tested by actual humans.

If you look here and here the last 3 MindTheGapps-11 releases were on:

Mar 28, 2021

Apr 12, 2021

Sep 20, 2021 - That's the most recent @ the present.

Play Store and Play Services automatically update themselves in the background regardless of the user's update settings in Play Store so there is no reason to churn out daily untested releases and the apps are updated when you login Play Store: either manually or auto-updated if you choose so.
Just to note.

MTG is not perfect either. ;)

Their installer script was broken.
[ROM][UNOFFICIAL][LineageOS][18.1/19.0][dragon] -> 2021-11-17 - xdaThread - Link
Four months to incorporate the PR to fix it. :(

Cheers. :cowboy:
 

Top Liked Posts

  • There are no posts matching your filters.
  • 4
    Is there anything new to say?
    OpenGApps is still pretty dead atm, which is very sad...
    I think it's safe to assume that OpenGApps is dead, it's well beyond the point of simply being temporarily on hold. The devs havent posted in many months, not even to say that it's just on hiatus and will return in the future. And besides that, the last OpenGApps releases are for Android 11, we are now on Android 14, and 15 is coming soon. Even if it comes back, they will have way too much catching up to do for the project to be manageable. There are a few other GApps providers out there that you can try, I'd move on. OpenGApps always was my fave, but I've managed without them.
    4
    What he said. There are other GApps providers like MindTheGapps and NikGapps (which is the one I use) that have taken up the mantle from OpenGApps. NikGapps, in fact, still has releases going all the way back to Android 9 (Pie), and like OpenGApps, provides packages from "core" to "full" depending on how much GApps you need. MindTheGapps, unfortunately, stops at Android 13, so if you're using 14, you're SOL there.
    MindTheGApps has Android 14 builds. I'm using it on an A14 LineageOS gsi ROM right now. The only problem with MTG, is that it isnt customizable. The zips are take it or leave it, you're installing all the components in the zip, or not at all. There is only 1 version (all the zips are the same, excluding hardware/Android version-specific details) which is essentially 1 size fits all. But most other GApps providers have customization in that you can choose which parts you do/don't want. But MTG is also very minimal, it just includes the core GApps components and little to no bloat. So it's not a big deal to me. I don't need all the extra stuff, just Play Services/Play Store/calendar and contacts syncing, not much else.

    MTG for Android 14:
    2
    Is there anything new to say?
    OpenGApps is still pretty dead atm, which is very sad...

    I think it's safe to assume that OpenGApps is dead, it's well beyond the point of simply being temporarily on hold. The devs havent posted in many months, not even to say that it's just on hiatus and will return in the future. And besides that, the last OpenGApps releases are for Android 11, we are now on Android 14, and 15 is coming soon. Even if it comes back, they will have way too much catching up to do for the project to be manageable. There are a few other GApps providers out there that you can try, I'd move on. OpenGApps always was my fave, but I've managed without them.

    What he said. There are other GApps providers like MindTheGapps and NikGapps (which is the one I use) that have taken up the mantle from OpenGApps. NikGapps, in fact, still has releases going all the way back to Android 9 (Pie), and like OpenGApps, provides packages from "core" to "full" depending on how much GApps you need. MindTheGapps, unfortunately, stops at Android 13, so if you're using 14, you're SOL there.
    1
    Is there anything new to say?
    OpenGApps is still pretty dead atm, which is very sad...
  • 837
    Questions? Use Q&A!
    Please read the FAQ before reporting any bugs or errors!
    If you post in the main thread not having read the FAQ or error message itself, not included a debug log when reporting a malfuction or reporting a Force Closure without a logcat, your post will be ignored by the developers!
    Not because we are evil, but because the same questions keep popping up over and over again and too often we get a "X doesn't work, plz fix" without any clue what is happening. We don't have telepathic connection to your device and all the time unnecessarily wasted on this can't be spend on development of Open GApps itself.

    The Latest builds of Open GApps for Android can easily be downloaded from the:


    I work on this project for FREE and putting in a lot of hours into it. While not mandatory, donations encourage me to continue to further pursue this project and I'd deeply appreciate them, if you feel generous.
    Donate to The Open GApps Project


    Are you a ROM developer and want to hotlink to the latest Open GApps package? Then check this wiki entry for details.
    Please don't publicly mirror the prebuilt packages without explicit consent of @MastahF, to ensure that users will always be directed to the very latest version and the source code of the project.


    About The Open GApps Project
    Open GApps is a Google Apps package completely developed by writing buildscripts which allow for the automated creation of new up-to-date packages automatically.
    The development process is completely open-source (GPLv3) and the goal is to have multiple contributors involved, to secure and reinforce the sustainability of Open GApps development.
    Builds are generated every (European) night automatically (if there are any changes) and uploaded to GitHub.

    Official AROMA Open GApps package is developed in collaboration with long-time LP-AROMA-developer @raulx222 and has a dedicated XDA thread
    For any questions about the AROMA installer development, please refer to that thread. Of course, general support questions can also be asked in our own Q&A thread.

    Official Open GApps For Stock support is developed in collaboration with @Rapper_skull and has a dedicated XDA thread
    For any questions about the GApps for Stock development, please refer to that thread. Of course, general support questions can also be asked in our own Q&A thread.

    The x86 package branch of the package is focused on Zenfone support and is maintained by @deadman96385 of the famous Zenfone GApps packages and has its own topic for x86 related questions

    For those that cook their own ROM, an AOSP-build mechanism for Open GApps has been developed by @blystad and can be found at GitHub, remember that you should not bundle any pre-packaged Google Apps with any ROMs you want to distribute further though.

    To gather all the various APKs that are necessary for the packages our master of the APK Universe @MNBooZe has written a tool called APKCrawler that scrape these from the internet, e.g. from APKMirror, it can be found at GitHub too.

    Characteristic of Open GApps:

    • Some highlights about the characteristics of the Open GApps packages:
    • All platforms and and all Android versions are supported
    • DPI-optimized support for all Google packages (unlike other GApps)
    • Frequently updated Google Apps: The pre-built OpenGApps.org packages are updated every (European) night (if there are any updated Google Apps available)
    • Strong compression, allowing for relatively small downloads of even the most complete packages
    • Automatic backup: It is not necessary to re-flash Google Apps when you flash a ROM update. Most ROMs support this (addon.d) function
    • The installer checks your device’s capabilities, like the system partition size. It will notify you, before making any changes, if it finds any problems
    • Several package variations, from a Google Super Package (includes all applications that ever shipped on a Google device), to a Stock package that equals the set of applications found on the most current and complete Nexus, to smaller, minimalist packages and an AROMA package that allows graphically selection of what to install
    • A special ‘for Stock ROM’ installation mode that allows to update the Google Apps on Stock ROMs that conform to the original Google Nexus filesystem structure
    • All package installations can be customized to your individual preferences using our Advanced Features and Options

    The idea behind this project:
    I believe a big source of the problem for many GApps packages to stay up-to-date (or not be forfeited) is the lack of time for developers to do labour-intensive repetive every time a new google-app apk is released.
    That is why I have taken it upto myself to write some Linux shell scripts to automate the packaging and to share these efforts with the world with the goal to create a team to continue this package together under the name Open GApps.


    This project should not be managed by a person, but by a team, so volunteers willing to help are more than welcome!

    Open GApps installer uses open source third-party tools, like busybox and xzdec, compiled by @YashdSaraf; See his busybox thread for more info.
    Open GApps is originally based on the now discontinued PA GApps package of @TKruzze and @osm0sis
    36
    Is it possible to get a test version of the arm version aswell?
    I run arm/arm64 builds of pico, nano and stock for testing.

    Once they are tested a bit and seem stable, I upload them to MediaFire.
    MediaFire - Link

    Android 12 builds are in the SDK31 folder.
    The 20211218 builds include some permission updates.​

    ---

    Last week I ran SDK32 builds to test on LineageOS.
    LineageOS is merging 12.1.0_r1 into the 19.0 branch instead of creating a 19.1 branch.
    LineageOS Gerrit - Topic 12L - Link
    Edit: I just checked and see they decided to bump up to 19.1 a few days ago.​

    Note:
    Now that Android 12L is official, the release props still show as 12 not 12.1 or 12L.
    The build tag was bumped to 12.1.0 and the boot image is now SDK32 but, the kernel version is still showing as 12.0.0
    The boot image was SDK31 on the 12L preview release.​

    The only way to determine if you are running 12 or 12L is by checking the SDK level.
    SDK31 = Android 12
    SDK32 = Android 12L

    The initial 12L OpenGApps test builds were blind builds and untested.
    I did not have a device/rom to test them on. 🙃

    I few days later I was able to test them on a Pixel C, Lineage 19.0 SDK32 build.
    Since it is a tablet, it utilized the large screen layout of SDK32.​

    The 12L pico and nano builds seem to be safe.

    The 12L stock build had issues with Pixel launcher so, I would suggest not using it for now.
    Unless you are using a gapps config script to customize the install.

    Android 12L (SDK32) test builds are currently on gDrive.
    gDrive - Link


    Everyone is welcome to give them a try.

    Cheers all. :cowboy:

    Edit:
    See additional posts.
    Post # 7,316
    Post # 7,319
    25
    Tomorrow there will be 7.0 builds
    Small update concerning Nougat: everything is almost in place, only HotWord Enrollment is not de-odexable yet.
    So tomorrow there will be 7.0 builds, ready for when the first source and custom ROMs will drop.
    Of course beta-quality because they cannot be tested yet, so be careful.
    There are some minor changes, Google changed their keyboard stuff, so there will be no swypelibs possible anymore.
    Google VR Services is backported to all Android versions (so all the way from 4.4 to 6.0) but ofc not yet known how well it will work.
    Also there are some new 7.0 core apps for Google's Shared Android Services (com.google.android.ext.shared; com.google.android.ext.services)
    Trusted Face's unlock has also some major changes, it seems the pittpatt suff is not necessary anymore for 7.0.

    That's it for now
    25
    For those who hadn't spotted it yet: we can celebrate 1 year of Open GApps :)
    http://opengapps.org/blog/post/2016/05/09/open-gapps-first-anniversary/
    23
    Sorry to drop in but needed to clean up some unnecessary posts that were burying more legitimate posts to the thread.

    Going into someone's thread and demanding they make you something is not only just plain rude, it goes against everything XDA is about. Numerous people suggested a way for you to remove the gapps and you chose to ignore them. The dev isn't going to make an uninstaller just for you. You could also always use root explorer and remove the apps that way too. Anywho, there won't be an uninstaller made so no need to continue this conversation.

    Thread Cleaned