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

android {
    compileSdkVersion 31

    defaultConfig {
        minSdkVersion 21
        targetSdkVersion 31
        versionCode 1
        versionName "1.0"
    }

    buildTypes {
      release {
        minifyEnabled false
      }
    }
}

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