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

com.flyjingfish.android_aop_plugin.config.RootBooleanConfig.kt Maven / Gradle / Ivy

Go to download

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

The newest version!
package com.flyjingfish.android_aop_plugin.config

enum class RootBooleanConfig(
    val propertyName: String,
    val defaultValue: Boolean,
) {
    DEBUG_MODE("androidAop.debugMode", false),
    ONLY_DEBUG("androidAop.debugMode.variantOnlyDebug", true),
    INCREMENTAL("androidAop.debugMode.isIncremental", true),
    REFLECT_INVOKE_METHOD("androidAop.reflectInvokeMethod", false),
    REFLECT_INVOKE_METHOD_ONLY_DEBUG("androidAop.reflectInvokeMethod.variantOnlyDebug", false),
    BUILD_CONFIG("androidAop.debugMode.buildConfig", true),
    REFLECT_INVOKE_METHOD_STATIC("androidAop.reflectInvokeMethod.static", true);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy