Skip to content

Commit

Permalink
++
Browse files Browse the repository at this point in the history
  • Loading branch information
blaugold committed Oct 4, 2023
1 parent a88d31a commit 7f3abb2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/native_assets_cli/lib/src/model/build_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ class BuildConfig {

late final IOSSdk? _targetIOSSdk;

/// When compiling for Android, the API version to target.
///
/// This property is not to be confused with
/// [`targetSdkVersion`](https://developer.android.com/ndk/guides/sdk-versions#targetsdkversion)
/// but is instead the
/// [`minSdkVersion`](https://developer.android.com/ndk/guides/sdk-versions#minsdkversion).
/// 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;
Expand Down

0 comments on commit 7f3abb2

Please sign in to comment.