Git Product home page Git Product logo

Comments (12)

rickicode avatar rickicode commented on June 26, 2024 4

fix with this

release {
            signingConfig signingConfigs.release
            minifyEnabled false
            shrinkResources false
        }

from flutter_vpn.

ctrysbita avatar ctrysbita commented on June 26, 2024

That is because the latest android sdk use R8 compiler which is not fully supported by Strongswan.

from flutter_vpn.

aldwnesx avatar aldwnesx commented on June 26, 2024

@ctrysbita @rickicode

Doesn't the libraries used not support non-arms?

from flutter_vpn.

ctrysbita avatar ctrysbita commented on June 26, 2024

@aldwnesx The native library support armeabi-v7a, arm64-v8a, x86, x86_64

from flutter_vpn.

aldwnesx avatar aldwnesx commented on June 26, 2024

@aldwnesx The native library support armeabi-v7a, arm64-v8a, x86, x86_64

this was just added right? because a week back it crashes on non-arms

from flutter_vpn.

ctrysbita avatar ctrysbita commented on June 26, 2024

@aldwnesx They were supported since v0.6.0

from flutter_vpn.

aldwnesx avatar aldwnesx commented on June 26, 2024

@aldwnesx They were supported since v0.6.0

when was it released? because i did that afew weeks ago and not supported.. i guess because of wrong filters..i am trying agian now much thanks

from flutter_vpn.

aldwnesx avatar aldwnesx commented on June 26, 2024

Also doesn't flutter not support building for x86 _ 32? How should I build release?

I am following your latest code:

   ndk {
                if (!project.hasProperty('target-platform')) {
                    abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
                } else {
                    def platforms = project.property('target-platform').split(',')
                    def platformMap = [
                            'android-arm'  : 'armeabi-v7a',
                            'android-arm64': 'arm64-v8a',
                            'android-x86'  : 'x86',
                            'android-x64'  : 'x86_64',
                    ]
                    abiFilters = platforms.stream().map({ e ->
                        platformMap.containsKey(e) ? platformMap[e] : e
                    }).toArray()
                }
            }


should i use flutter build appbundle or flutter build apk --release ?

from flutter_vpn.

ctrysbita avatar ctrysbita commented on June 26, 2024

@aldwnesx Flutter only support arm, arm64, x86, x86_64. You can use the way you want to build release.

from flutter_vpn.

 avatar commented on June 26, 2024

from flutter_vpn.

 avatar commented on June 26, 2024

from flutter_vpn.

ctrysbita avatar ctrysbita commented on June 26, 2024

Fixed in v0.12.0

from flutter_vpn.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.