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

io.github.lyxnx.gradle.android.AndroidLibraryPlugin.kt Maven / Gradle / Ivy

There is a newer version: 1.0.13
Show newest version
package io.github.lyxnx.gradle.android

import com.android.build.api.dsl.LibraryExtension
import io.github.lyxnx.gradle.android.internal.android
import org.gradle.api.Project

private const val ANDROID_LIBRARY_PLUGIN = "com.android.library"

public class AndroidLibraryPlugin : BaseAndroidPlugin() {

    override fun Project.configure() {
        applyBasePlugin(ANDROID_LIBRARY_PLUGIN)

        android {
            defaultConfig {
                consumerProguardFiles("consumer-rules.pro")
            }

            buildFeatures {
                buildConfig = false
                resValues = false
                androidResources = false
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy