summaryrefslogtreecommitdiff
path: root/src/fruits/droid/ctv/app/build.gradle
blob: 065f134f86c50a9fbd1047139ad6f5cf747c5c8b (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
plugins {
    alias(libs.plugins.android.application)
}

android {
    namespace 'city.akon.ctv'
    compileSdk 34
    ndkVersion '23.2.8568313'

    defaultConfig {
        applicationId "city.akon.ctv"
        minSdk 21
        targetSdk 34
        versionCode 1
        versionName "1.0"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_11
        targetCompatibility JavaVersion.VERSION_11
    }
}

dependencies {
}