-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable usage of Android
ScanSettings
(#159)
- Loading branch information
Showing
5 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// ktlint-disable filename | ||
|
||
package com.juul.kable | ||
|
||
/** | ||
* Marks declarations that are **obsolete** in Kable API, which means that the design of the corresponding declarations | ||
* has known flaws/drawbacks and they will be redesigned or replaced in the future. | ||
* | ||
* Roughly speaking, these declarations will be deprecated in the future but there is no replacement for them yet, so | ||
* they cannot be deprecated right away. | ||
*/ | ||
@MustBeDocumented | ||
@Retention(value = AnnotationRetention.BINARY) | ||
@RequiresOptIn(level = RequiresOptIn.Level.WARNING) | ||
public annotation class ObsoleteKableApi |