build.gradle 676 B

123456789101112131415161718192021222324252627
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion target_sdk_version
  4. buildToolsVersion build_tools_version
  5. defaultConfig {
  6. minSdkVersion min_sdk_version
  7. targetSdkVersion target_sdk_version
  8. }
  9. buildTypes {
  10. sourceSets {
  11. main { jni.srcDirs = [] }
  12. }
  13. }
  14. }
  15. dependencies {
  16. compile fileTree(dir: 'libs', include: ['*.jar'])
  17. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  18. exclude group: 'com.android.support', module: 'support-annotations'
  19. })
  20. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  21. testCompile 'junit:junit:4.12'
  22. }