我在音视频直播测试注意点
除了软件的功能点还有以下的注重点视频方面: 花屏 马赛克 色调 动态模糊 不同分辨率及显示
增加Google gradle插件:在根级(项目级)Gradle 文件 (
build.gradle)
buildscript {
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
}
dependencies {
// ...
// Add the following line:
classpath 'com.google.gms:google-services:4.3.3' // Google Services plugin
}
}
allprojects {
// ...
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
// ...
}
}在app module的grdle下添加