Search code examples
androidflutterarchivegoogle-play-console

How to disable android archive functionality on flutter application?


I have warning in play console that says

So I need to disable this archive feature but can't I don't know from where.

I tried this in build.gradle, but it didn't work.

bundle {
    storeArchive.enable = false
}

Solution

  • If you are using AGP 7.2 or newer and want to opt-out of the generation of archived APKs, you can modify the build.gradle file of the project:

    android {
        bundle {
            storeArchive {
                enable = false
            }
        }
    }
    

    https://android-developers.googleblog.com/2022/03/freeing-up-60-of-storage-for-apps.html