build.gradle 916 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion "25.0.3"
  5. defaultConfig {
  6. minSdkVersion 15
  7. targetSdkVersion 25
  8. versionCode 1
  9. versionName "6.82"
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. sourceSets {
  18. main { jni.srcDirs = [] }
  19. }
  20. }
  21. }
  22. dependencies {
  23. compile fileTree(dir: 'libs', include: ['*.jar'])
  24. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  25. exclude group: 'com.android.support', module: 'support-annotations'
  26. })
  27. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  28. testCompile 'junit:junit:4.12'
  29. }