我尝试更新到Firebase产品的15.x API版本。不知何故,firebase-invites:15.0.2无法找到:
add_action( 'woocommerce_no_products_found', function(){
remove_action( 'woocommerce_no_products_found', 'wc_no_products_found', 10 );
// HERE change your message below
$message = __( 'No products were found matching your selection.', 'woocommerce' );
echo '<p class="woocommerce-info">' . $message .'</p>';
}, 9 );
我的root build.gradle中有Google maven存储库:
答案 0 :(得分:9)
我遇到了同样的问题。我只是升级root build grad的类路径
classpath&#39; com.google.gms:google-services:4.0.1&#39;
在Root gradle中
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:4.0.1'
}
}
答案 1 :(得分:0)
还没有版本15.0.2的firebase-invites。 15.0.1是最新版本。
最近,Firebase和Play服务库的版本控制方案发生了变化。也许您仍然在gradle中使用变量来管理所有版本。该模式不再有效。详细信息位于this blog。
答案 2 :(得分:0)
我有同样的问题。 通过从15.0.2更改为15.0.1解决了它,如下所示:
implementation 'com.google.firebase:firebase-database:15.0.1'