Skip to content
Snippets Groups Projects
build.gradle 935 B
Newer Older
  • Learn to ignore specific revisions
  • apply plugin: 'com.android.library'
    apply plugin: 'com.neenbedankt.android-apt'
    
    android {
        compileSdkVersion 23
    
    akwizgran's avatar
    akwizgran committed
        buildToolsVersion "23.0.3"
    
            minSdkVersion 14
            proguardFiles getDefaultProguardFile('proguard-android.txt'), '../briar-android/proguard-rules.txt'
            consumerProguardFiles getDefaultProguardFile('proguard-android.txt'), '../briar-android/proguard-rules.txt'
    
        compileOptions {
            sourceCompatibility JavaVersion.VERSION_1_7
            targetCompatibility JavaVersion.VERSION_1_7
        }
    
        testCompile project(':briar-api')
        testCompile project(':briar-core')
    
        testCompile 'junit:junit:4.12'
    
        testCompile 'net.jodah:concurrentunit:0.4.2'
    
        testCompile 'com.android.support:appcompat-v7:23.2.1'
    
        testApt 'com.google.dagger:dagger-compiler:2.0.2'
        provided 'javax.annotation:jsr250-api:1.0'
        testCompile project(':briar-tests')
    }