android小炒设备
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 lines
1.7 KiB

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. jcenter()
  6. maven { url "https://jitpack.io" }
  7. maven {
  8. url "https://maven.aliyun.com/nexus/content/repositories/releases/"
  9. }
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:7.4.1'
  13. //classpath 'com.jakewharton:butterknife-gradle-plugin:8.8.1'
  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. jcenter()
  22. maven { url "https://jitpack.io" }
  23. maven {
  24. url "https://maven.aliyun.com/nexus/content/repositories/releases/"
  25. }
  26. }
  27. }
  28. task clean(type: Delete) {
  29. delete rootProject.buildDir
  30. }
  31. ext { // 统一版本入口
  32. //App版本号
  33. versionCode = 1
  34. versionName = "1.0.0"
  35. // 支持Android版本
  36. buildToolsVersion = "33.0.0"
  37. minSdkVersion = 23
  38. targetSdkVersion = 33
  39. compileSdkVersion = 33
  40. // 支持包
  41. supportVersion = "28.0.0"
  42. //butterknife = "8.8.1"
  43. butterknife = "10.0.0"
  44. // 炒锅
  45. // 设置applicationId(这里很重要,两个相同applicationId的apk不同同时安装在同一台Android手机中)
  46. applicationId="com.hbl.authorize"
  47. // 奶茶机
  48. // 设置applicationId(这里很重要,两个相同applicationId的apk不同同时安装在同一台Android手机中)
  49. // applicationId= "com.bonait.ncj"
  50. // 调味吧
  51. // 设置applicationId(这里很重要,两个相同applicationId的apk不同同时安装在同一台Android手机中)
  52. // applicationId= "com.bonait.twb"
  53. }