I added the component libraries to my gradle files, as explained here:
https://codelabs.developers.google.com/codelabs/android-room-with-a-view/#2
But AIDE still doesn't resolve imports:
import android.arch.persistence.room.ColumnInfo;
import android.arch.persistence.room.Entity;
import android.arch.persistence.room.PrimaryKey;
import android.support.annotation.NonNull;
I've also tried this way:
dependencies {
// Room components
def room_version = "2.1.0-alpha04"
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
AIDE doesn't resolve
import androidx
It simply does't react on any changes in the gradle files.