Statistics
| Branch: | Tag: | Revision:

securesmartcam / app / build.gradle @ 98b6d137

History | View | Annotate | Download (1.18 KB)

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

    
3
android {
4
    compileSdkVersion 25
5
    buildToolsVersion '26.0.2'
6

    
7
    defaultConfig {
8
        applicationId "org.witness.sscphase1"
9
        minSdkVersion 16
10
        targetSdkVersion 25
11
        versionCode 4001
12
        versionName "4.0.0-beta-1"
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
    lintOptions {
33
        disable 'MissingTranslation', 'LocaleFolder'
34
        abortOnError false
35
        checkReleaseBuilds false
36
    }
37

    
38

    
39
}
40

    
41
repositories {
42
    flatDir {
43
        dirs 'aar'
44
    }
45
}
46

    
47
dependencies {
48
    compile 'com.google.guava:guava:20.0'
49
    compile 'commons-codec:commons-codec:1.9'
50
    compile 'com.android.support:appcompat-v7:25.3.1'
51
    compile 'com.android.support:design:25.3.1'
52
    compile 'com.writingminds:FFmpegAndroid:0.3.2'
53
    compile(name:'picasso-2.6.0', ext:'aar')
54
}