build.gradle 458 B

123456789101112
  1. buildscript {
  2. ext {
  3. compose_version = '1.3.1'
  4. hilt_version = '2.44'
  5. }
  6. }// Top-level build file where you can add configuration options common to all sub-projects/modules.
  7. plugins {
  8. id 'com.android.application' version '7.3.1' apply false
  9. id 'com.android.library' version '7.3.1' apply false
  10. id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
  11. id 'com.google.dagger.hilt.android' version '2.44' apply false
  12. }