使用+
导致构建失败。当我明确使用播放服务版本时,它工作正常。但问题是使用特定版本是我的一些节点模块指向使用+
符号播放服务。那么有什么方法可以解决这个问题
dependencies {
compile(project(':react-native-google-signin')){
exclude group: "com.google.android.gms" // very important
}
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile 'com.google.android.gms:play-services-auth:+'
compile "com.facebook.react:react-native:+" // From node_modules
compile 'com.google.android.gms:play-services-maps:+'
compile ('com.google.android.gms:play-services-gcm:+') {
force = true;
}
}
apply plugin: 'com.google.gms.google-services'