@@ -262,7 +262,11 @@ kotlin_library("tlv") {
262
262
" src/matter/tlv/values.kt" ,
263
263
]
264
264
265
- kotlinc_flags = [ " -Xlint:deprecation" ]
265
+ kotlinc_flags = [
266
+ " -Xlint:deprecation" ,
267
+ " -module-name" ,
268
+ " com.matter.tlv" ,
269
+ ]
266
270
}
267
271
268
272
kotlin_library (" tlv_reader_test" ) {
@@ -323,7 +327,11 @@ kotlin_library("jsontlv") {
323
327
" src/matter/jsontlv/types.kt" ,
324
328
]
325
329
326
- kotlinc_flags = [ " -Xlint:deprecation" ]
330
+ kotlinc_flags = [
331
+ " -Xlint:deprecation" ,
332
+ " -module-name" ,
333
+ " com.matter.matterjson" ,
334
+ ]
327
335
}
328
336
329
337
kotlin_library (" json_to_tlv_to_json_test" ) {
@@ -363,6 +371,10 @@ kotlin_library("onboarding_payload") {
363
371
" src/matter/onboardingpayload/Verhoeff.kt" ,
364
372
" src/matter/onboardingpayload/Verhoeff10.kt" ,
365
373
]
374
+ kotlinc_flags = [
375
+ " -module-name" ,
376
+ " com.matter.onboarding" ,
377
+ ]
366
378
}
367
379
368
380
kotlin_library (" onboardingpayload_manual_code_test" ) {
@@ -404,7 +416,11 @@ kotlin_library("chipcluster") {
404
416
sources = structs_sources
405
417
sources += eventstructs_sources
406
418
407
- kotlinc_flags = [ " -Xlint:deprecation" ]
419
+ kotlinc_flags = [
420
+ " -Xlint:deprecation" ,
421
+ " -module-name" ,
422
+ " com.matter.chipcluster" ,
423
+ ]
408
424
}
409
425
410
426
kotlin_library (" chipcluster_test" ) {
0 commit comments