moxy-community / Moxy

Moxy is MVP library for Android with incremental annotation processor and ktx features
MIT License
324 stars 33 forks source link

MvpAppCompatActivity not found #102

Closed CrazyCoderAndroid closed 4 years ago

CrazyCoderAndroid commented 4 years ago

import moxy.MvpAppCompatActivity; shows red line showing cannot resolve symbol MvpAppCompatActivity.

build.gradle(app)

implementation "com.github.moxy-community:moxy:2.1.2" annotationProcessor "com.github.moxy-community:moxy-compiler:2.1.1"

alaershov commented 4 years ago

Of course it does, MvpAppCompatActivity is a class from other artifact: AndroidX: implementation "com.github.moxy-community:moxy-androidx:$moxyVersion" AppCompat: implementation "com.github.moxy-community:moxy-app-compat:$moxyVersion"

CrazyCoderAndroid commented 4 years ago

ok. Thanks