build.gradle 575 B

12345678910111213141516171819
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. dependencies {
  4. classpath 'com.android.tools.build:gradle:8.0.2'
  5. // NOTE: Do not place your application dependencies here; they belong
  6. // in the individual module build.gradle files
  7. }
  8. }
  9. plugins {
  10. id 'com.android.application' version '8.0.2' apply false
  11. id 'com.android.library' version '8.0.2' apply false
  12. }
  13. tasks.register('clean', Delete) {
  14. delete rootProject.buildDir
  15. }
  16. //apply from: NATIVE_DIR + "/build.gradle"