build.gradle 984 B

12345678910111213141516171819202122232425262728293031323334
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.neenbedankt.android-apt'
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.3"
  6. defaultConfig {
  7. minSdkVersion 14
  8. proguardFiles getDefaultProguardFile('proguard-android.txt'), '../briar-android/proguard-rules.txt'
  9. consumerProguardFiles getDefaultProguardFile('proguard-android.txt'), '../briar-android/proguard-rules.txt'
  10. }
  11. dexOptions {
  12. incremental true
  13. }
  14. compileOptions {
  15. sourceCompatibility JavaVersion.VERSION_1_7
  16. targetCompatibility JavaVersion.VERSION_1_7
  17. }
  18. }
  19. dependencies {
  20. testCompile project(':briar-api')
  21. testCompile project(':briar-core')
  22. testCompile 'junit:junit:4.12'
  23. testCompile 'net.jodah:concurrentunit:0.4.2'
  24. testCompile 'com.android.support:appcompat-v7:23.2.1'
  25. testApt 'com.google.dagger:dagger-compiler:2.0.2'
  26. provided 'javax.annotation:jsr250-api:1.0'
  27. testCompile project(':briar-tests')
  28. }