基础组件库
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 

44 рядки
731 B

  1. group 'cn.zhios.zhiying_base_widget'
  2. version '1.0'
  3. buildscript {
  4. repositories {
  5. google()
  6. jcenter()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.5.0'
  10. }
  11. }
  12. rootProject.allprojects {
  13. repositories {
  14. google()
  15. jcenter()
  16. }
  17. }
  18. apply plugin: 'com.android.library'
  19. android {
  20. compileSdkVersion 28
  21. defaultConfig {
  22. minSdkVersion 21
  23. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  24. }
  25. lintOptions {
  26. disable 'InvalidPackage'
  27. }
  28. dependencies {
  29. }
  30. }
  31. dependencies {
  32. implementation 'androidx.appcompat:appcompat:1.2.0'
  33. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  34. }