1plugins {
2    id 'com.android.application'
3}
4
5android {
6    compileSdk 30
7    compileSdkVersion 'android-SX'
8
9    defaultConfig {
10        applicationId "com.android.providers.media.tools.photopicker"
11        minSdk 16
12        targetSdk 30
13        versionCode 1
14        versionName "1.0"
15    }
16
17    buildTypes {
18        release {
19            minifyEnabled false
20            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
21        }
22    }
23    compileOptions {
24        sourceCompatibility JavaVersion.VERSION_1_8
25        targetCompatibility JavaVersion.VERSION_1_8
26    }
27}
28
29dependencies {
30
31    implementation 'androidx.appcompat:appcompat:1.2.0'
32    implementation 'com.google.android.material:material:1.3.0'
33    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
34}