Hi, I've deprecated a function in the library proj...
# android
g
Hi, I've deprecated a function in the library project like
Copy code
@Deprecated(message = "Use newFunction(String) function")
        fun sampleFun(id: String): B
It works on a project if has
kotlin
dependency as expected(ide warns and strikethrough ) but interesting point when i import the library which has above deprecated function in pure
java
project it doesn't show any warning. When i open function's declaration it looks like below
Copy code
@kotlin.Deprecated public final fun sampleFun(id: kotlin.String):
Is there any one had this issue before?