You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If using gradle 7+ you will errors when building due to the fact that compile and runtime were depreciated and removed.
I was able to get it to successfully build by changing compile() to implementation() and from configurations.runtime to from configurations.runtimeClasspath.
The text was updated successfully, but these errors were encountered:
If using gradle 7+ you will errors when building due to the fact that compile and runtime were depreciated and removed.
I was able to get it to successfully build by changing compile() to implementation() and from configurations.runtime to
from configurations.runtimeClasspath.
The text was updated successfully, but these errors were encountered: