Prinz Piuz
Prinz Piuz

Reputation: 113

Flutter apk running fine in release mode and debug mode but built apk not working?

I have an app running fine in flutter run and flutter run --release.
I am using flutter flutter_ssh plugin(this plugin is not connecting)
I have already given the required permission internet permission in main manifest file
But built apk not working this is my repo

Upvotes: 0

Views: 466

Answers (1)

Prinz Piuz
Prinz Piuz

Reputation: 113

issue solved by building apk using
flutter build apk --split-per-abi --no-shrink
or
flutter build apk --no-shrink

Upvotes: 1

Related Questions