fix color of tim, scroll bar and add readme help for android build errors

This commit is contained in:
2026-03-20 11:26:36 +02:00
parent 98e9beb1cb
commit 0d65e625f1
10 changed files with 253 additions and 35 deletions

View File

@@ -110,6 +110,37 @@ class _ExamplePackageState extends State<ExamplePackage> {
}
```
---
## Android Setup & Troubleshooting
This package relies on **`local_auth`** and **`app_settings`**. Due to recent updates in these plugins, your Android project must meet specific SDK and NDK version requirements.
### 1. Official Plugin Documentation
If you encounter platform-specific issues (such as biometric permission errors), please refer to the official setup guides:
* [**local_auth (Android Integration)**](https://pub.dev/packages/local_auth#android-integration) — *Note: Requires `FlutterFragmentActivity` in your MainActivity.*
* [**app_settings (Documentation)**](https://pub.dev/packages/app_settings) — *Note: Required for opening system settings natively.*
### 2. Required Build Configuration
Update your `android/app/build.gradle.kts` (or `build.gradle`) to match the versions required by these plugins:
```kotlin
android {
// Required by the latest app_settings
compileSdk = 36
// Required by local_auth & app_settings native dependencies
ndkVersion = "27.0.12077973"
defaultConfig {
// local_auth requires a minimum of SDK 21
minSdk = 21
...
}
}
```
## Additional information
For more details about MIH Package Toolkit, including usage instructions and updates, please visit the [MIH Gitea repository](https://git.mzansi-innovation-hub.co.za/yaso_meth/mih_package_toolkit).
@@ -125,4 +156,4 @@ We strive to respond to issues and pull requests in a timely manner. While this
If you would like to support the MIH development team directly, please feel free to contribute to the [MIH Project via DonaHub](https://donahub.co.za/campaigns/mih-project)
Thank you for using the MIH Package Toolkit!
Thank you for using the MIH Package Toolkit!