Statistics
| Branch: | Tag: | Revision:

securesmartcam / app / build.gradle @ 3ba46a5c

History | View | Annotate | Download (1.04 KB)

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

    
3
android {
4
    compileSdkVersion 25
5
    buildToolsVersion "25.0.2"
6

    
7
    defaultConfig {
8
        applicationId "org.witness.sscphase1"
9
        minSdkVersion 16
10
        targetSdkVersion 25
11
        versionCode 40
12
        versionName "4.0.0-alpha-2"
13
        ndk {
14
            moduleName "JpegRedaction"
15
            stl "stlport_static"
16
            cFlags "-fexceptions"
17
        }
18

    
19
    }
20

    
21
    buildTypes {
22
        release {
23
            minifyEnabled false
24
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
25
        }
26
    }
27
    externalNativeBuild {
28
        ndkBuild {
29
            path 'src/main/jni/Android.mk'
30
        }
31
    }
32
}
33

    
34
repositories {
35
    flatDir {
36
        dirs 'aar'
37
    }
38
}
39

    
40
dependencies {
41
    compile 'com.google.guava:guava:20.0'
42
    compile 'commons-codec:commons-codec:1.9'
43
    compile 'com.android.support:appcompat-v7:25.3.1'
44
    compile 'com.android.support:design:25.3.1'
45
    compile 'com.writingminds:FFmpegAndroid:0.3.2'
46
    compile(name:'picasso-2.6.0', ext:'aar')
47
}