Merge eef03bf9adbe600f3c0f89748f73bc21151c407d into 4c6b0e9c3b33c0315becb94272841468f71a8f37

This commit is contained in:
v1beta1 2024-12-24 14:14:46 -05:00 committed by GitHub
commit 548fc4662f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

32
v1beta/pyenv Normal file
View File

@ -0,0 +1,32 @@
buildscript {
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
}
dependencies {
// ...
// Add the following lines:
classpath 'com.google.gms:google-services:4.4.2' // Google Services plugin
implementation 'com.google.android.gms:18.5.0'
}
}
allprojects {
// ...
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
// ...
}
}
apply plugin: 'com.android.application'
// Add the following line:
apply plugin: 'com.google.gms.google-services' // Google Services plugin
android {
// ...
}