summaryrefslogtreecommitdiff
path: root/LoopbackApp/app/build.gradle
blob: b1e114a534608dcf6cd7872f0df36c7ec437c602 (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
apply plugin: 'com.android.model.application'

model {
    android {
        compileSdkVersion = 23
        buildToolsVersion = "23.0.1"

        defaultConfig.with {
            applicationId = "org.drrickorang.loopback"
            minSdkVersion.apiLevel = 11
            targetSdkVersion.apiLevel = 23
        }
        ndk {
            moduleName "loopback"
            cppFlags.addAll "-I${project.rootDir}/app/src/main/jni".toString(), "-g"
            CFlags.addAll "-I${project.rootDir}/app/src/main/jni".toString()

            ldLibs.addAll "OpenSLES", "log"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles.add file('proguard.cfg')
            }
            debug {
                ndk {
                    debuggable true
                }
            }
        }    }


}

dependencies {
    compile 'com.android.support:appcompat-v7:23.0.1'
}