com.autonomousapps.model.internal.intermediates.consumer.ExplodingAbi.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dependency-analysis-gradle-plugin Show documentation
Show all versions of dependency-analysis-gradle-plugin Show documentation
Analyzes dependency usage in Android and JVM projects
// Copyright (c) 2024. Tony Robalik.
// SPDX-License-Identifier: Apache-2.0
package com.autonomousapps.model.internal.intermediates.consumer
import com.squareup.moshi.JsonClass
@JsonClass(generateAdapter = false)
internal data class ExplodingAbi(
val className: String,
val sourceFile: String?,
/** Every class discovered in the bytecode of [className], and which is exposed as part of the ABI. */
val exposedClasses: Set,
) : Comparable {
override fun compareTo(other: ExplodingAbi): Int = className.compareTo(other.className)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy