Hi, I'm getting this problem when building from CI...
# gradle
c
Hi, I'm getting this problem when building from CI gradle 7.0.0:
Copy code
A problem occurred evaluating script.
> Failed to apply plugin 'com.android.internal.library'.
   > The option 'android.enableR8' is deprecated.
     It was removed in version 7.0 of the Android Gradle plugin.
Should I just remove it from gradle.properties? how to enable r8 now?
m
I guess it's enabled by default now
1
😅 1
h
R8 is enabled by default in Android Gradle Plugin 7.0.0
1
j
You can still use proguard if need but r8 is default
c
You were right guys, Thank u all.