From 178f911a2f078127abae5f3a9fd1a77878479ba9 Mon Sep 17 00:00:00 2001 From: C10udburst <18114966+C10udburst@users.noreply.github.com> Date: Thu, 4 Aug 2022 09:24:03 +0200 Subject: [PATCH] fix --- src/main/kotlin/com/lagradost/gradle/CloudstreamExtension.kt | 3 --- src/main/kotlin/com/lagradost/gradle/CloudstreamPlugin.kt | 2 -- 2 files changed, 5 deletions(-) diff --git a/src/main/kotlin/com/lagradost/gradle/CloudstreamExtension.kt b/src/main/kotlin/com/lagradost/gradle/CloudstreamExtension.kt index 9da80b7..80ef0b6 100644 --- a/src/main/kotlin/com/lagradost/gradle/CloudstreamExtension.kt +++ b/src/main/kotlin/com/lagradost/gradle/CloudstreamExtension.kt @@ -6,9 +6,6 @@ import org.gradle.api.provider.Property import javax.inject.Inject abstract class CloudstreamExtension @Inject constructor(project: Project) { - val projectType: Property = - project.objects.property(ProjectType::class.java).convention(ProjectType.PLUGIN) - val userCache = project.gradle.gradleUserHomeDir.resolve("caches").resolve("cloudstream") var discord: ApkInfo? = null diff --git a/src/main/kotlin/com/lagradost/gradle/CloudstreamPlugin.kt b/src/main/kotlin/com/lagradost/gradle/CloudstreamPlugin.kt index 5151a62..c5bf601 100644 --- a/src/main/kotlin/com/lagradost/gradle/CloudstreamPlugin.kt +++ b/src/main/kotlin/com/lagradost/gradle/CloudstreamPlugin.kt @@ -1,7 +1,5 @@ package com.lagradost.gradle -import com.aliucord.gradle.configuration.registerConfigurations -import com.aliucord.gradle.task.registerTasks import org.gradle.api.Plugin import org.gradle.api.Project