21 lines
817 B
Groovy
21 lines
817 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven { url 'https://artifacts.applovin.com/android' }
|
|
}
|
|
dependencies {
|
|
// Google Services plugin - firebase need
|
|
classpath 'com.google.gms:google-services:4.4.2'
|
|
// Add the dependency for the Crashlytics Gradle plugin
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.application' version '8.1.0' apply false
|
|
id 'org.jetbrains.kotlin.android' version "1.8.0" apply false
|
|
// Add the dependency for the Google services Gradle plugin
|
|
id("com.google.gms.google-services") version "4.4.2" apply false
|
|
id("com.google.firebase.crashlytics") version "3.0.2" apply false
|
|
} |