From fd21f5b9a2bcc7ee8fc252c50d5518cb4146fdf5 Mon Sep 17 00:00:00 2001 From: Gabriel Terwesten Date: Thu, 5 Oct 2023 14:15:46 +0200 Subject: [PATCH] [native_assets_cli] Clarify meaning of `targetAndroidNdkApi` in docs (#151) --- pkgs/native_assets_cli/lib/src/model/build_config.dart | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/native_assets_cli/lib/src/model/build_config.dart b/pkgs/native_assets_cli/lib/src/model/build_config.dart index 786aefe4d..e1aecbadb 100644 --- a/pkgs/native_assets_cli/lib/src/model/build_config.dart +++ b/pkgs/native_assets_cli/lib/src/model/build_config.dart @@ -66,11 +66,16 @@ class BuildConfig { late final IOSSdk? _targetIOSSdk; - /// When compiling for Android, the API version to target. + /// When compiling for Android, the minimum Android SDK API version to that + /// the compiled code will be compatible with. /// /// Required when [targetOs] equals [OS.android]. /// /// Not available in [dryRun]. + /// + /// For more information about the Android API version, refer to + /// [`minSdkVersion`](https://developer.android.com/ndk/guides/sdk-versions#minsdkversion) + /// in the Android documentation. int? get targetAndroidNdkApi { _ensureNotDryRun(); return _targetAndroidNdkApi;