MIT / BSD … • Google / Apple の開発者向けドキュメントにも、 OSSライセンスの遵守義務について 明記されている ◦ Include open source notices | Google Play services | Google for Developers ◦ Apple Developer Program License Agreement - Agreements and Guidelines - Support - Apple Developer
licenses: List<License>) // ひとつのライセンスを表現したモデル sealed interface License { val name: String // ライセンスの全文を取得できる場合 data class Text(override val name: String, val text: String) : License // ライセンスの全文取得が難しく URLから参照する必要がある場合 data class Url(override val name: String, val url: String) : License }