build.gradle 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-kapt'
  4. android {
  5. compileSdkVersion 32
  6. buildToolsVersion "32.0.0"
  7. defaultConfig {
  8. applicationId "cn.hgits.loglibrary"
  9. minSdkVersion 19
  10. targetSdkVersion 32
  11. versionCode 1
  12. versionName "1.0"
  13. multiDexEnabled true
  14. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. }
  27. dependencies {
  28. implementation fileTree(dir: 'libs', include: ['*.jar'])
  29. //implementation project(path: ':hgsoftloglibrary')
  30. implementation project(path: ':hgsoftloglibrarytwo')
  31. implementation project(path: ':debuglogshow')
  32. //implementation 'com.hgsoft.app:loglibrary:1.2201.1'
  33. //implementation 'com.hgsoft.app:loglibrarytwo:1.2201.1'
  34. //implementation 'com.hgsoft.app:debulogshow:1.2000.0'
  35. implementation 'androidx.multidex:multidex:2.0.1'
  36. implementation 'com.google.android.material:material:1.6.1'
  37. implementation 'androidx.appcompat:appcompat:1.4.2'
  38. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  39. testImplementation 'junit:junit:4.13.2'
  40. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  41. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  42. }