Reputation: 21
Is it necessary to use proguard on your flutter app?
I'm trying to secure my app and the only one things I know is to handle the user data using flutter_secure_storage
. I want a maximum security of my application.
Upvotes: 1
Views: 160
Reputation: 121
Firstly you should understand what proguard is and what it can do.
Short description: it is a tool for code shrinking, obfuscation, and optimization in Android development. When you build a Flutter app for Android, you can use ProGuard to reduce the size of your app's APK and make it harder for reverse-engineers to understand your code.
For Security purpose other than data, you should keep this in mind.
Implementing these measures can help you achieve maximum security for your Flutter app. However, keep in mind that security is a continuous process, and you should regularly review and update your security measures to keep up with evolving security threats.
Upvotes: 0