ReleaseItem.kt almost ready

This commit is contained in:
Iamlooker
2022-04-21 01:07:12 +05:30
parent 10e8485f20
commit 0beed03cb5
2 changed files with 124 additions and 44 deletions

View File

@@ -0,0 +1,32 @@
package com.looker.droidify.utility
import com.looker.droidify.database.entity.Release
object SampleData {
val demoRelease = Release(
packageName = "com.looker.droidify",
selected = false,
version = "v0.2.3",
versionCode = 1234,
added = 12345,
size = 12345,
maxSdkVersion = 32,
minSdkVersion = 29,
targetSdkVersion = 32,
source = "",
release = "",
hash = "",
hashType = "",
signature = "",
obbPatchHashType = "",
obbPatchHash = "",
obbPatch = "",
obbMainHashType = "",
obbMainHash = "",
obbMain = "",
permissions = listOf(),
features = listOf(),
platforms = listOf(),
incompatibilities = listOf()
)
}