build.gradle 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. defaultConfig {
  5. applicationId "com.mylove.bindviewlib"
  6. minSdkVersion 15
  7. targetSdkVersion 29
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. debug {
  14. minifyEnabled true
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. }
  23. dependencies {
  24. implementation fileTree(include: ['*.jar'], dir: 'libs')
  25. implementation 'androidx.appcompat:appcompat:1.2.0'
  26. testImplementation 'junit:junit:4.13'
  27. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  28. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  29. implementation project(':viewbind')
  30. // implementation 'com.yanyi.benyanyi:viewbind:1.0.7'
  31. }