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

com.virjar.ratel.api.hint.RatelEngineVersion Maven / Gradle / Ivy

Go to download

ratel api,used for developer on ratel system,an extension for xposed framewrok,ratel api compatable with original xposed framework

There is a newer version: 1.3.6
Show newest version
package com.virjar.ratel.api.hint;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 标记该API从那个版本的引擎开始支持,ratelAPI和引擎关系密切
 */
@Retention(RetentionPolicy.SOURCE)
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
@Documented
public @interface RatelEngineVersion {
    String value() default RatelEngineHistory.V_1_2_5;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy