mirror of
https://git.wmi.amu.edu.pl/s470664/WRSDv2.git
synced 2024-11-09 13:55:26 +01:00
20 lines
481 B
Groovy
20 lines
481 B
Groovy
|
buildscript {
|
||
|
|
||
|
repositories {
|
||
|
// Make sure that you have the following two repositories
|
||
|
google() // Google's Maven repository
|
||
|
mavenCentral() // Maven Central repository
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
|
||
|
// Add the dependency for the Google services Gradle plugin
|
||
|
classpath 'com.google.gms:google-services:4.3.14'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
plugins {
|
||
|
id 'com.android.application' version '7.3.1' apply false
|
||
|
id 'com.android.library' version '7.3.1' apply false
|
||
|
}
|