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

com.flyjingfish.android_aop_plugin.utils.AndroidConfig.kt Maven / Gradle / Ivy

Go to download

Lightweight Aop for Android platform, you deserve it, action is worse than your heartbeat

There is a newer version: 2.2.8
Show newest version
package com.flyjingfish.android_aop_plugin.utils


import com.android.build.gradle.BaseExtension
import org.gradle.api.Project
import java.io.File

/**
 * Android相关配置
 */
class AndroidConfig(project: Project) {

    private val android: BaseExtension = project.extensions.getByName("android") as BaseExtension

    /**
     * Return boot classpath.
     * @return Collection of classes.
     */
    fun getBootClasspath(): List {
        return android.bootClasspath
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy