From eef03bf9adbe600f3c0f89748f73bc21151c407d Mon Sep 17 00:00:00 2001 From: v1beta1 Date: Tue, 24 Dec 2024 14:14:35 -0500 Subject: [PATCH] Create pyenv --- v1beta/pyenv | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 v1beta/pyenv diff --git a/v1beta/pyenv b/v1beta/pyenv new file mode 100644 index 00000000..111f4e40 --- /dev/null +++ b/v1beta/pyenv @@ -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 { + // ... + }