build.gradle 795 B

12345678910111213141516171819202122232425262728
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 31
  4. defaultConfig {
  5. minSdkVersion 15
  6. targetSdkVersion 28
  7. versionCode 1
  8. versionName "1.0"
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. implementation fileTree(dir: 'libs', include: ['*.jar'])
  19. implementation 'com.android.support:appcompat-v7:28.0.0'
  20. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  21. testImplementation 'junit:junit:4.12'
  22. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  23. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  24. }