Files
manaknightdev 8ba6156121 Project Setup
2023-03-14 00:23:53 +05:30

20 lines
709 B
Groovy

buildscript {
ext {
kotlin_version = '1.8.10'
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3"
classpath 'com.android.tools.build:gradle:3.4.0'
classpath 'com.google.gms:google-services:4.3.15'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
repositories {
mavenCentral()
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
}