贷款超市新仓库

build.gradle 868B

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