build.gradle 1.3 KB

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