root.build.gradle.in 915 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // Copyright (c) Contributors to the Open 3D Engine Project.
  3. // For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. //
  5. // SPDX-License-Identifier: Apache-2.0 OR MIT
  6. //
  7. buildscript {
  8. repositories {
  9. google()
  10. mavenCentral()
  11. }
  12. dependencies {
  13. classpath 'com.android.tools.build:gradle:${ANDROID_GRADLE_PLUGIN_VERSION}'
  14. // NOTE: Do not place your application dependencies here; they belong
  15. // in the individual module build.gradle files
  16. }
  17. }
  18. allprojects {
  19. repositories {
  20. google()
  21. mavenCentral()
  22. }
  23. }
  24. subprojects {
  25. ext {
  26. minSdkVer = ${MIN_SDK_VER}
  27. sdkVer = ${SDK_VER}
  28. ndkPlatformVer = '${NDK_VERSION}'
  29. buildToolsVer = '${SDK_BUILD_TOOL_VER}'
  30. lyEngineRoot = '${LY_ENGINE_ROOT}'
  31. }
  32. }
  33. task clean(type: Delete) {
  34. delete rootProject.buildDir
  35. }