We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
targetAndroidNdkApi
1 parent 7aaa025 commit fd21f5bCopy full SHA for fd21f5b
pkgs/native_assets_cli/lib/src/model/build_config.dart
@@ -66,11 +66,16 @@ class BuildConfig {
66
67
late final IOSSdk? _targetIOSSdk;
68
69
- /// When compiling for Android, the API version to target.
+ /// When compiling for Android, the minimum Android SDK API version to that
70
+ /// the compiled code will be compatible with.
71
///
72
/// Required when [targetOs] equals [OS.android].
73
74
/// 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.
79
int? get targetAndroidNdkApi {
80
_ensureNotDryRun();
81
return _targetAndroidNdkApi;
0 commit comments