This commit is contained in:
Thibault Deckers 2023-08-22 22:09:11 +02:00
parent 8d441d29ea
commit c942c6c6fd

View file

@ -5,6 +5,7 @@ class Dependencies {
static const String bsd2 = 'BSD 2-Clause “Simplified” License'; static const String bsd2 = 'BSD 2-Clause “Simplified” License';
static const String bsd3 = 'BSD 3-Clause “Revised” License'; static const String bsd3 = 'BSD 3-Clause “Revised” License';
static const String eclipse1 = 'Eclipse Public License 1.0'; static const String eclipse1 = 'Eclipse Public License 1.0';
static const String lgpl3 = 'GNU Lesser General Public License v3.0';
static const String mit = 'MIT License'; static const String mit = 'MIT License';
static const String zlib = 'zlib License'; static const String zlib = 'zlib License';
@ -92,6 +93,11 @@ class Dependencies {
licenseUrl: 'https://github.com/flutter/packages/blob/main/packages/local_auth/local_auth/LICENSE', licenseUrl: 'https://github.com/flutter/packages/blob/main/packages/local_auth/local_auth/LICENSE',
sourceUrl: 'https://github.com/flutter/packages/tree/main/packages/local_auth/local_auth', sourceUrl: 'https://github.com/flutter/packages/tree/main/packages/local_auth/local_auth',
), ),
Dependency(
name: 'FFmpegKit',
license: lgpl3,
sourceUrl: 'https://github.com/arthenica/ffmpeg-kit',
),
Dependency( Dependency(
name: 'Media Kit', name: 'Media Kit',
license: mit, license: mit,