Android Studio 4.1 ANDROID_AAPT_IGNORE

Viewed 633

When I switch to Android Studio 4.1 with this changes https://github.com/MikeOrtiz/TouchImageView/pull/267/files

classpath 'com.android.tools.build:gradle:4.1.0-alpha10'

I run into https://github.com/MikeOrtiz/TouchImageView/pull/267/checks?check_run_id=737327676

> Could not resolve all dependencies for configuration ':app:releaseRuntimeClasspath'.
   > Could not create task ':app:extractDeepLinksDebug'.
      > Cannot obtain value from provider of environment variable 'ANDROID_AAPT_IGNORE' at configuration time.
        Use a provider returned by 'forUseAtConfigurationTime()' instead.

Maybe someone has an idea how to get rid of it ?

2 Answers

Same issue for me. It seems like Gradle issue (maybe should open a bug report)

I am able to temporary solve it by downgrade Gradle version to 6.5-milestone-1

Related