Reputation: 113
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
Reputation: 113
issue solved by building apk using
flutter build apk --split-per-abi --no-shrink
or
flutter build apk --no-shrink
Upvotes: 1