baseProjectTemplate.gradle

作者:追风剑情 发布于:2023-6-19 17:40 分类:Unity3d

  1. // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
  2.  
  3. allprojects {
  4. buildscript {
  5. repositories {**ARTIFACTORYREPOSITORY**
  6. //优先从阿里云镜像下载
  7. maven{ url 'https://maven.aliyun.com/repository/public/' }
  8. maven{ url 'https://maven.aliyun.com/repository/central' }
  9. maven{ url 'https://maven.aliyun.com/repository/google' }
  10. //华为云镜像下载
  11. maven { url 'https://repo.huaweicloud.com/repository/maven' }
  12. //JitPack仓库下载
  13. maven { url 'https://jitpack.io' }
  14. mavenCentral()
  15. google()
  16. jcenter()
  17. }
  18.  
  19. dependencies {
  20. // If you are changing the Android Gradle Plugin version, make sure it is compatible with the Gradle version preinstalled with Unity
  21. // See which Gradle version is preinstalled with Unity here https://docs.unity3d.com/Manual/android-gradle-overview.html
  22. // See official Gradle and Android Gradle Plugin compatibility table here https://developer.android.com/studio/releases/gradle-plugin#updating-gradle
  23. // To specify a custom Gradle version in Unity, go do "Preferences > External Tools", uncheck "Gradle Installed with Unity (recommended)" and specify a path to a custom Gradle version
  24. // Android Gradle Plugin 版本为 4.0.1
  25. // Gradle版本与Gradle Plugin版本之间的对应关系 https://developer.android.google.cn/studio/releases/gradle-plugin?hl=zh-cn#updating-plugin
  26. classpath 'com.android.tools.build:gradle:4.0.1'
  27. **BUILD_SCRIPT_DEPS**
  28. }
  29. }
  30.  
  31. repositories {**ARTIFACTORYREPOSITORY**
  32. //优先从阿里云镜像下载
  33. maven{ url 'https://maven.aliyun.com/repository/public/' }
  34. maven{ url 'https://maven.aliyun.com/repository/central' }
  35. maven{ url 'https://maven.aliyun.com/repository/google' }
  36. //华为云镜像下载
  37. maven { url 'https://repo.huaweicloud.com/repository/maven' }
  38. //JitPack仓库下载
  39. maven { url 'https://jitpack.io' }
  40. mavenCentral()
  41. google()
  42. jcenter()
  43. flatDir {
  44. dirs "${project(':unityLibrary').projectDir}/libs"
  45. }
  46. }
  47. }
  48.  
  49. task clean(type: Delete) {
  50. delete rootProject.buildDir
  51. }

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号