You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Kolyall
Your understanding is mostly correct. If NavResults is inherited by a class and you use obfuscation tools like ProGuard or R8, the name of the class implementing NavResults might be obfuscated. However, as long as the relationship between NavResults and its implementing class is maintained during the obfuscation process, ours code should work as expected.
When you use T::class.java.name in your Kotlin code, it retrieves the fully qualified name of the class. In the case of obfuscation, the name might be changed, but it will be changed consistently throughout the application. As long as the obfuscation process is consistent and does not break the inheritance hierarchy, the functionality should remain intact.
android-extension/extension/src/main/java/com/stanfit/android/extension/library/fragment/Fragment+Result.kt
Line 23 in cc18250
do not use T::class.java.name , because after obfuscate here will be error in runtime
The text was updated successfully, but these errors were encountered: