build.gradle 910 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. compileSdk rootProject.ext.android.compileSdk
  6. buildToolsVersion rootProject.ext.android.buildToolsVersion
  7. defaultConfig {
  8. minSdk rootProject.ext.android.minSdk
  9. targetSdk rootProject.ext.android.targetSdk
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled rootProject.ext.module.minifyEnabled
  14. proguardFiles 'proguard-rules.pro'
  15. }
  16. }
  17. buildFeatures {
  18. buildConfig false
  19. }
  20. lintOptions {
  21. abortOnError false
  22. }
  23. dexOptions {
  24. preDexLibraries false
  25. }
  26. buildFeatures {
  27. buildConfig false
  28. }
  29. lintOptions {
  30. abortOnError false
  31. }
  32. dexOptions {
  33. preDexLibraries false
  34. }
  35. }
  36. dependencies {
  37. compileOnly project(':library_base')
  38. compileOnly project(':library_core')
  39. }
  40. //apply from: 'buildJar.gradle'