Why Gradle can't get the latest version of a module when using this command : implementation('com.example:module')
But when I manually specify the latest version it works ! example :
implementation('com.example:module:6.3.2')
What could be the possible reasons for such a behaviour ? I know that without specifying the version it should get the latest version , but it's not the case for me now.