build.gradle 568 B

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