Skip to content

Commit 7f3abb2

Browse files
committed
++
1 parent a88d31a commit 7f3abb2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

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

6767
late final IOSSdk? _targetIOSSdk;
6868

69-
/// When compiling for Android, the API version to target.
70-
///
71-
/// This property is not to be confused with
72-
/// [`targetSdkVersion`](https://developer.android.com/ndk/guides/sdk-versions#targetsdkversion)
73-
/// but is instead the
74-
/// [`minSdkVersion`](https://developer.android.com/ndk/guides/sdk-versions#minsdkversion).
69+
/// When compiling for Android, the minimum Android SDK API version to that
70+
/// the compiled code will be compatible with.
7571
///
7672
/// Required when [targetOs] equals [OS.android].
7773
///
7874
/// 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.
7979
int? get targetAndroidNdkApi {
8080
_ensureNotDryRun();
8181
return _targetAndroidNdkApi;

0 commit comments

Comments
 (0)