aboutsummaryrefslogtreecommitdiff
path: root/android/WALT/app/build.gradle
blob: ec9994645879005a5b05c878b6666725650869e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apply plugin: 'com.android.application'


android {
    compileSdkVersion 27
    buildToolsVersion '27.0.3'

    defaultConfig {
        applicationId "org.chromium.latency.walt"
        minSdkVersion 17
        targetSdkVersion 23
        versionCode 9
        versionName "0.1.9"
        externalNativeBuild.ndkBuild {
            arguments "APP_PLATFORM=android-14", "APP_ALLOW_MISSING_DEPS=true"
        }
    }

    externalNativeBuild.ndkBuild {
        path 'src/main/jni/Android.mk'
    }

    buildTypes {
        release {
                minifyEnabled false
        }
        debug {
            ndk {
                debuggable true
            }
        }
    }
}

dependencies {
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support:preference-v7:27.1.1'
    implementation 'com.android.support:preference-v14:27.1.1'
    implementation 'com.github.PhilJay:MPAndroidChart:v3.0.1'
    testImplementation 'junit:junit:4.12'
    testImplementation 'org.mockito:mockito-core:1.10.19'
    testImplementation ('org.powermock:powermock-api-mockito:1.6.2') {
        exclude module: 'hamcrest-core'
        exclude module: 'objenesis'
    }
    testImplementation ('org.powermock:powermock-module-junit4:1.6.2') {
        exclude module: 'hamcrest-core'
        exclude module: 'objenesis'
    }
}