贷款超市新仓库

build.gradle 866B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (C) 2017 Baidu, Inc. All Rights Reserved.
  3. */
  4. apply plugin: 'com.android.library'
  5. android {
  6. compileSdkVersion 28
  7. defaultConfig {
  8. minSdkVersion 19
  9. targetSdkVersion 28
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21. dependencies {
  22. androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
  23. exclude group: 'com.android.support', module: 'support-annotations'
  24. })
  25. implementation 'com.android.support:appcompat-v7:28.0.0'
  26. testImplementation 'junit:junit:4.12'
  27. implementation files('libs/license.jar')
  28. }