aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
blob: c68f61162fb30d28032dbeeadaec2224cee9f2b0 (plain) (blame)
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
plugins {
    alias(libs.plugins.android.application)
}

android {
    namespace 'tel.zajc.rtv'
    //noinspection GradleDependency
    compileSdk 24

    defaultConfig {
        applicationId "tel.zajc.rtv"
        minSdk 24
        //noinspection ExpiredTargetSdkVersion
        targetSdk 24
        versionCode 1
        versionName "1.0"

    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildFeatures {
        viewBinding true
    }
}

dependencies {
}