babeena kurian
babeena kurian

Reputation: 11

How to disable proxy for flutter

I am developing a flutter app on the android studio, Proxy is disabled from the android studio as well IE, and using open network but still getting a proxy error, Is there any separate proxy config. for flutter, If, How to remove it? It works fine for other Android projects, only for flutter app this issue comes

Upvotes: 0

Views: 4212

Answers (2)

Tavares
Tavares

Reputation: 513

Maybe the problem is not exactly on flutter, but on git wich is used to push/pull files.. Try clean the proxy on git:

git config --global --unset http.proxy

git config --global --unset https.proxy

or take a look in the git configuration file ~/.gitconfig and delete manually the proxy configuration.

Upvotes: 0

Ada
Ada

Reputation: 31

for me , on windows , i have deleted the properties with systemProp.http in ~/.gradle/gradle.properties

Upvotes: 3

Related Questions