If we write the dependency line like this:
implementation "com.squareup.retrofit2:retrofit:"
It works.
If we write the dependency line like this:
implementation "com.squareup.retrofit2:retrofit:2.4.0"
And put the cursor before 2.4.0, and push Ctrl + Shift + Space buttons,
It works.
But
If we write it like this one:
implementation "com.squareup.retrofit2:retrofit:${retrofit2Version}"
And put the cursor before $ sign, and push Ctrl + Shif + Space buttons, it doesn't bring anything!
If we write the dependency line like this:
implementation "com.squareup.retrofit2:retrofit:"It works.
If we write the dependency line like this:
implementation "com.squareup.retrofit2:retrofit:2.4.0"And put the cursor before
2.4.0, and push Ctrl + Shift + Space buttons,It works.
But
If we write it like this one:
implementation "com.squareup.retrofit2:retrofit:${retrofit2Version}"And put the cursor before
$sign, and push Ctrl + Shif + Space buttons, it doesn't bring anything!