Is your feature request related to a problem? Please describe.
I've started migrating some internal project to KMP and noticed that the koin-android artifact transitively adds the appcompat library. This is really unnecessary because we now rely on ComponentActivity from the androidx.activity artifact.
Describe the solution you'd like
Remove all usages of the appcompat library in the koin-android artifact and replace them with ComponentActivity. Essentially, we are already using it since AppCompatActivity extends from ComponentActivity.
Target Koin project
This affects the koin-android artifact only.
Is your feature request related to a problem? Please describe.
I've started migrating some internal project to KMP and noticed that the
koin-androidartifact transitively adds theappcompatlibrary. This is really unnecessary because we now rely onComponentActivityfrom theandroidx.activityartifact.Describe the solution you'd like
Remove all usages of the
appcompatlibrary in thekoin-androidartifact and replace them withComponentActivity. Essentially, we are already using it sinceAppCompatActivityextends fromComponentActivity.Target Koin project
This affects the
koin-androidartifact only.