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

com.flyjingfish.android_aop_annotation.utils.AndroidAOPDebugUtils.kt Maven / Gradle / Ivy

package com.flyjingfish.android_aop_annotation.utils

object AndroidAOPDebugUtils {
    internal fun init(){
        try {
            Class.forName("com.flyjingfish.android_aop_core.utils.AnnotationInit")
        } catch (_: Throwable) {
        }
        init = true
    }
    private var init = false
    var isApkDebug : Boolean = false
        set(value) {
            if (init){
                throw IllegalStateException("isApkDebug can only be set once")
            }
            field = value
        }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy