EWTD

build_calc

Feb 9th, 2024
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2.  
  3. buildscript {
  4.  
  5. ext.kotlin_version = '1.6.21'
  6. dependencies {
  7.  
  8. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  9. classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
  10. }
  11. }
  12.  
  13. plugins {
  14. id 'com.android.application' version '7.3.1' apply false
  15. id 'com.android.library' version '7.3.1' apply false
  16. id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
  17. id 'androidx.navigation.safeargs.kotlin' version '2.5.3' apply false
  18. }
  19.  
  20. task clean(type: Delete) {
  21. delete rootProject.buildDir
  22. }
  23.  
Add Comment
Please, Sign In to add comment