Statistics
| Branch: | Tag: | Revision:

trustedintents / app / build.gradle @ cba1dc86

History | View | Annotate | Download (545 Bytes)

1
apply plugin: 'com.android.application'
2

    
3
android {
4
    compileSdkVersion 23
5
    buildToolsVersion "23.0.2"
6

    
7
    defaultConfig {
8
        applicationId "info.guardianproject.trustedintents"
9
        minSdkVersion 7
10
        targetSdkVersion 23
11
        versionCode 1
12
        versionName "1.0"
13
    }
14
}
15

    
16
dependencies {
17
    compile fileTree(dir: 'libs', include: ['*.jar'])
18
    compile project (':trustedintents')
19
    testCompile 'junit:junit:4.12'
20
    compile 'com.android.support:appcompat-v7:23.1.1'
21
    compile 'com.android.support:design:23.1.1'
22
}