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

android {
    compileSdkVersion 31

    defaultConfig {
        minSdkVersion 21
        targetSdkVersion 31
    }

    buildTypes {
      release {
        minifyEnabled false
      }
    }
}

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