Skip to content

Commit fd21f5b

Browse files
authored
[native_assets_cli] Clarify meaning of targetAndroidNdkApi in docs (#151)
1 parent 7aaa025 commit fd21f5b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pkgs/native_assets_cli/lib/src/model/build_config.dart

+6-1
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,16 @@ class BuildConfig {
6666

6767
late final IOSSdk? _targetIOSSdk;
6868

69-
/// When compiling for Android, the API version to target.
69+
/// When compiling for Android, the minimum Android SDK API version to that
70+
/// the compiled code will be compatible with.
7071
///
7172
/// Required when [targetOs] equals [OS.android].
7273
///
7374
/// Not available in [dryRun].
75+
///
76+
/// For more information about the Android API version, refer to
77+
/// [`minSdkVersion`](https://developer.android.com/ndk/guides/sdk-versions#minsdkversion)
78+
/// in the Android documentation.
7479
int? get targetAndroidNdkApi {
7580
_ensureNotDryRun();
7681
return _targetAndroidNdkApi;

0 commit comments

Comments
 (0)