mirror of
https://github.com/kyawsanoo/MovieApplication.git
synced 2026-03-13 09:11:04 +08:00
43 lines
798 B
Groovy
43 lines
798 B
Groovy
buildscript {
|
|
ext.kotlin_version = "1.8.0"
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath 'com.android.tools.build:gradle:7.4.1'
|
|
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.44'
|
|
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3'
|
|
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.5.20'
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
|
|
compileTestKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
} |