summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/pjsua/android/app/build.gradle
blob: 35fa39c76515b55e80404100e6a661879635a9d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
apply plugin: 'com.android.application'

android {
    compileSdkVersion 15
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "org.pjsip.pjsua"
        minSdkVersion 15
        targetSdkVersion 15

        ndk {
            moduleName "libpjsua"
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}