In my Android development team everyone uses Mac. I want to switch to Windows, so I wonder if there will be incompatibilities in Android Studio projects shared with Git, for example in gradle sections with paths like:
signingConfigs {
release {
storeFile file('../the_keystore.jks')
storePassword '1234'
keyAlias '1234'
keyPassword '1234'
}
}
or here:
sourceSets {
main {
res.srcDirs = ['src/main/res']
}
staging {
res.srcDirs = ['src/staging/res']
}
production {
res.srcDirs = ['src/production/res']
}
}
and in that case, any possible solutions.