summaryrefslogtreecommitdiff
path: root/app/build.gradle
blob: c4ca6a0cd1483e5958d633d49c40417947c85f7e (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
38
39
// Dually licensed as CC-BY-SA and GPLv3 by Marko Zajc in 2022
plugins {
    id 'com.android.application'
}

android {
    namespace 'org.eu.zajc.autorecord'
    //noinspection GradleDependency I use android 12 so I won't pretend like I know if any other version is supported
    compileSdk 32

    defaultConfig {
        applicationId "org.eu.zajc.autorecord"

        // lower API levels should be applicable, but you'll probably want to remove usage of the
        // stream API
        minSdk 31

        //noinspection ExpiredTargetSdkVersion I use android 12 so I won't pretend like I know if any other version is supported
        targetSdk 32

        versionCode 2
        versionName "1.1"
    }

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

dependencies {
    compileOnly 'de.robv.android.xposed:api:82'
}