X-dea / flutter_vpn

Plugin to access VPN service for Flutter | Flutter 的 VPN 插件
GNU Lesser General Public License v3.0
355 stars 126 forks source link

***** WARNING: FOR ALL DEVELOPERS USING THIS PACKAGE ***** #97

Closed realbitt closed 2 years ago

realbitt commented 2 years ago

This package works fine in development environment and debug build, but application WILL NOT WORK after build Release so you can't run or upload application in google store, I find out this problem too late after I finished my application development, its too pain.

Don't waste your time

huzaifa846 commented 2 years ago

@realbitt so is there any alternative plugin to use?

ctrysbita commented 2 years ago

Fixed in v0.11.0. Just disable code & resource shinking.

android {
    ...
    buildTypes {
        ...
        release {
            ...
            shrinkResources false
            minifyEnabled false
            ...
        }
    }
}