X-dea / flutter_vpn

Plugin to access VPN service for Flutter | Flutter 的 VPN 插件

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

realbitt opened this issue · comments

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

@realbitt so is there any alternative plugin to use?

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

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