build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. apply plugin: 'com.android.library'
  2. //apply from: 'publish.gradle'
  3. android {
  4. compileSdkVersion 27
  5. defaultConfig {
  6. minSdkVersion 16
  7. targetSdkVersion 27
  8. versionCode 1
  9. versionName "1.0.0"
  10. testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. implementation fileTree(include: ['*.jar'], dir: 'libs')
  21. androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
  22. exclude group: 'com.android.support', module: 'support-annotations'
  23. })
  24. implementation 'androidx.appcompat:appcompat:1.0.0'
  25. testImplementation 'junit:junit:4.12'
  26. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  27. implementation 'com.github.bumptech.glide:glide:3.7.0'
  28. implementation 'com.bm.photoview:library:1.4.1'
  29. implementation 'com.google.android.material:material:1.0.0'
  30. implementation 'pub.devrel:easypermissions:0.3.0'
  31. }