All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gabrielittner.github.diff.Apk.kt Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
package com.gabrielittner.github.diff

import com.google.common.collect.ImmutableSortedMap
import com.google.common.collect.ImmutableSortedSet

data class Apk(
    val commit: String,
    val name: String,
    val fileSize: Int,
    val methodCountInt: Int,
    val fieldCountInt: Int,
    val permissions: ImmutableSortedSet,
    val features: ImmutableSortedMap,
    val featuresNot: ImmutableSortedSet,
    val methods: ImmutableSortedSet,
    val fields: ImmutableSortedSet,
    val manifest: String = ""
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy