summaryrefslogtreecommitdiffstats
path: root/ratethisapp/build.gradle
blob: 510764419f22e9680162b5aa33d59d751f826885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
apply plugin: "com.android.library"

android {
    compileSdkVersion 31

    defaultConfig {
        minSdkVersion 21
        targetSdkVersion 31
    }

    buildTypes {
      release {
        minifyEnabled false
      }
    }
    namespace 'com.kobakei.ratethisapp'
}

dependencies {
    implementation 'androidx.annotation:annotation:1.3.0'
}