mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-15 07:28:30 +00:00
20 lines
350 B
Kotlin
20 lines
350 B
Kotlin
/*
|
|
* Copyright 2025 Signal Messenger, LLC
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
plugins {
|
|
id("signal-library")
|
|
id("kotlin-parcelize")
|
|
alias(libs.plugins.kotlinx.serialization)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.signal.core.models"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.kotlinx.serialization.json)
|
|
implementation(libs.jackson.core)
|
|
}
|