aboutsummaryrefslogtreecommitdiffstats
path: root/libs/android-transcoder/build.gradle
blob: 6b1f1086dc1f28e702d281fe5665da7a581e1691 (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
buildscript {
    repositories {
        jcenter()
    }
}

apply plugin: 'com.android.library'

dependencies {
    implementation 'com.android.support:support-v13:28.0.0'
}

android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'

    defaultConfig {
        minSdkVersion 18
        targetSdkVersion 28
    }

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