getAdditionalNativeLibraries method

  1. @override
Future<List<String>> getAdditionalNativeLibraries(
  1. String versionId,
  2. String nativesPath
)
override

Get additional native libraries to extract. These libraries will be added to the native libraries extracted from the version's libraries.

versionId - The version ID for which to get additional native libraries nativesPath - The path where native libraries will be extracted

Returns a list of paths to additional JAR files containing native libraries

Implementation

@override
Future<List<String>> getAdditionalNativeLibraries(
  String versionId,
  String nativesPath,
) async {
  // デフォルト実装では追加のJARファイルはありません
  return [];
}