Files
openide/plugins/kotlin/compiler-plugins/android-extensions-stubs/README.md
Yan Zhulanow 25d96f941b Add stubs for a couple of Android classes for Android Extensions plugin
This removed these plugin verifier warnings:
- Package 'android.os' is not found along with its class Parcel.
- Package 'android.view' is not found along with its class View.

GitOrigin-RevId: 1715a2e8f340caf9369f3699fed423c6586df83e
2022-01-22 10:55:56 +00:00

584 B

This module contains stubs for several classes from Android SDK on which the Android Extensions runtime library has dependencies.

In practice, absence of these classes won't make a huge difference: both compiler and IDE plugins use classes from the kotlinx.android package only for getting their qualified name (instead of hard-coding it in a string constant). No deep introspection is made.

However, the IntelliJ plugin verifier issues an error if any class reference in bytecode is unresolved.

This module should be removed as we remove the Android Extensions support itself.