Merge pull request #340 from Yousef-Rabia/update-CONTRIBUTING.md

Add Android Additional Instructions
This commit is contained in:
Ankit Mahato
2024-03-21 23:27:26 +05:30
committed by GitHub

View File

@ -131,6 +131,19 @@ Instead of copy pasting from pub.dev, it is recommended that you use `flutter pu
## Platform-specific Additional Instructions
### Android
Add the `multiDexEnabled true` line to the `defaultConfig` section at `android/app/build.gradle file`
```
android {
...
defaultConfig {
...
multiDexEnabled true
}
}
```
### macOS
Add below keys to `macos/Runner/DebugProfile.entitlements` and `macos/Runner/Release.entitlements`.