update manifest

This commit is contained in:
Cloudburst 2022-08-09 17:12:04 +02:00 committed by GitHub
parent 8c18572597
commit 15ba33075a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -21,7 +21,6 @@ fun Project.makeManifest(): PluginManifest {
pluginClassName = extension.pluginClassName,
name = this.name,
version = version ?: -1,
apiVersion = extension.apiVersion
)
}

View File

@ -3,6 +3,5 @@ package com.lagradost.cloudstream3.gradle.entities
data class PluginManifest(
val pluginClassName: String?,
val name: String,
val version: Int,
val apiVersion: Int
val version: Int
)