技术在游戏研发中的重要性
作为一个有追求的技术开发人员,总是希望能够做出好的技术。那么对于游戏研发领域,什么样的技术才是好的技
增加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下添加