Ошибка в Android Studio
Invoke-customs are only supported starting with Android O (—min-api 26)
Для устранения данной ошибки в файле приложения build.gradle укажите версию JAVA
compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 }
а также File -> Project Structure -> Modules
Если появится ошибка вида
Could not install Gradle distribution from
то необходимо запустить Android Studio от имени администратора и gradle-7 скачается и установится автоматически.
configurations.all {
resolutionStrategy { force 'androidx.core:core:1.6.0' }
}