Launcher3Download-android-12.1.0_r27.bat 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. @echo off
  2. set url=https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/
  3. set tag=android-12.1.0_r27
  4. set launcher3Url=%url%packages/apps/Launcher3
  5. set frameworkUrl=%url%frameworks/
  6. set frameworksBaseUrl=%frameworkUrl%base/
  7. set frameworksLibsSystemuiUrl=%frameworkUrl%/libs/systemui/
  8. set dirs=packages packages\\apps frameworks frameworks\\libs
  9. (for %%d in (%dirs%) do (
  10. if exist %%d (
  11. rd /q /s "%%d"
  12. echo delete dir %%d
  13. )
  14. mkdir "%%d"
  15. echo create dir %%d
  16. ))
  17. ::下载Launcher3
  18. echo.
  19. echo.
  20. echo 下载Launcher3
  21. set appsDir=packages/apps
  22. set launcher3Dir=%appsDir%/Launcher3
  23. @echo on
  24. git -C %appsDir% clone --filter=blob:none --sparse --depth 1 -b %tag% --single-branch --no-checkout %launcher3Url%
  25. @echo off
  26. git -C %launcher3Dir% sparse-checkout init --no-cone
  27. git -C %launcher3Dir% sparse-checkout set /*
  28. @echo on
  29. git -C %launcher3Dir% checkout -b %tag% %tag%
  30. @echo off
  31. ::删除.git目录
  32. rd /q /s "%launcher3Dir%/.git"
  33. ::下载SystemUI、WindowManager-Shell、Framework Aidl
  34. echo.
  35. echo.
  36. echo 下载SystemUI、WindowManager-Shell、Framework Aidl
  37. set frameworksDir=frameworks
  38. set frameworksBaseDir=%frameworksDir%/base
  39. @echo on
  40. git -C %frameworksDir% clone --filter=blob:none --sparse --depth 1 -b %tag% --single-branch --no-checkout %frameworksBaseUrl%
  41. @echo off
  42. git -C %frameworksBaseDir% sparse-checkout init --no-cone
  43. git -C %frameworksBaseDir% sparse-checkout set !/*
  44. git -C %frameworksBaseDir% sparse-checkout add !/packages/*
  45. git -C %frameworksBaseDir% sparse-checkout add !/packages/SystemUI/*
  46. git -C %frameworksBaseDir% sparse-checkout add packages/SystemUI/plugin_core/
  47. git -C %frameworksBaseDir% sparse-checkout add packages/SystemUI/shared/
  48. git -C %frameworksBaseDir% sparse-checkout add !/libs/*
  49. git -C %frameworksBaseDir% sparse-checkout add !/libs/WindowManager/*
  50. git -C %frameworksBaseDir% sparse-checkout add /libs/WindowManager/Shell/*.*
  51. git -C %frameworksBaseDir% sparse-checkout add /libs/WindowManager/Shell/OWNERS
  52. git -C %frameworksBaseDir% sparse-checkout add /libs/WindowManager/Shell/**/*.aidl
  53. git -C %frameworksBaseDir% sparse-checkout add /libs/WindowManager/Shell/src/com/android/wm/shell/util/**/*.java
  54. git -C %frameworksBaseDir% sparse-checkout add /libs/WindowManager/Shell/src/com/android/wm/shell/common/split/SplitScreenConstants.java
  55. git -C %frameworksBaseDir% sparse-checkout add /core/java/**/*.aidl
  56. @echo on
  57. git -C %frameworksBaseDir% checkout -b %tag% %tag%
  58. @echo off
  59. ::删除.git目录
  60. rd /q /s "%frameworksBaseDir%/.git"
  61. ::下载iconloaderlib
  62. echo.
  63. echo.
  64. echo 下载iconloaderlib
  65. set frameworksLibsDir=frameworks/libs
  66. set frameworksLibsSystemUiDir=%frameworksLibsDir%/systemui
  67. @echo on
  68. git -C %frameworksLibsDir% clone --filter=blob:none --sparse --depth 1 -b %tag% --single-branch --no-checkout %frameworksLibsSystemuiUrl%
  69. @echo off
  70. git -C %frameworksLibsSystemUiDir% sparse-checkout init --no-cone
  71. git -C %frameworksLibsSystemUiDir% sparse-checkout set !/*
  72. git -C %frameworksLibsSystemUiDir% sparse-checkout add !/*/
  73. git -C %frameworksLibsSystemUiDir% sparse-checkout add /iconloaderlib/
  74. @echo on
  75. git -C %frameworksLibsSystemUiDir% checkout -b %tag% %tag%
  76. @echo off
  77. ::删除.git目录
  78. rd /q /s "%frameworksLibsSystemUiDir%/.git"
  79. @echo on
  80. pause