From f1112741bfb20a2e0ac6348b425d1a6ac1a5cbc8 Mon Sep 17 00:00:00 2001 From: Fankesyooni Date: Sun, 3 Apr 2022 21:53:40 +0800 Subject: [PATCH] Merge code --- .../annotation/CauseProblemsApi.kt | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/annotation/CauseProblemsApi.kt diff --git a/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/annotation/CauseProblemsApi.kt b/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/annotation/CauseProblemsApi.kt new file mode 100644 index 00000000..2c457b86 --- /dev/null +++ b/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/annotation/CauseProblemsApi.kt @@ -0,0 +1,55 @@ +/* + * YukiHookAPI - An efficient Kotlin version of the Xposed Hook API. + * Copyright (C) 2019-2022 HighCapable + * https://github.com/fankes/YukiHookAPI + * + * MIT License + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + * This file is Created by fankes on 2022/4/3. + */ +@file:Suppress("OPT_IN_IS_NOT_ENABLED", "EXPERIMENTAL_IS_NOT_ENABLED", "unused") + +package com.highcapable.yukihookapi.annotation + +@RequiresOptIn(level = RequiresOptIn.Level.WARNING) +@MustBeDocumented +@Target( + AnnotationTarget.CLASS, + AnnotationTarget.CONSTRUCTOR, + AnnotationTarget.FUNCTION, + AnnotationTarget.ANNOTATION_CLASS, + AnnotationTarget.PROPERTY, + AnnotationTarget.FIELD, + AnnotationTarget.LOCAL_VARIABLE, + AnnotationTarget.VALUE_PARAMETER, + AnnotationTarget.PROPERTY_GETTER, + AnnotationTarget.PROPERTY_SETTER, + AnnotationTarget.TYPEALIAS +) +@Retention(AnnotationRetention.BINARY) +/** + * - ❗标记为不规范使用可能会引发问题的 API + * + * 此功能用于规范代码作用域 - 非作用域内的 API 将会在 IDE 中显示警告 + * + * 此功能除继承和接口外不应该在这里被调用 + */ +annotation class CauseProblemsApi \ No newline at end of file