AndroidConfig constructor

const AndroidConfig({
  1. String cmake = 'cmake',
  2. required String ndkPath,
  3. String? abi,
  4. int androidPlatform = 21,
  5. bool staticStl = true,
  6. CmakeGenerator? generator = CmakeGenerator.ninja,
  7. List<String> extraDefines = const [],
})

Implementation

const AndroidConfig({
  this.cmake = 'cmake',
  required this.ndkPath,
  this.abi,
  this.androidPlatform = 21,
  this.staticStl = true,
  this.generator = CmakeGenerator.ninja,
  this.extraDefines = const [],
});