]> piware.de Git - android-PittiHelloWorld.git/blob - app/build.gradle
Add button to take a photo
[android-PittiHelloWorld.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2 apply plugin: 'kotlin-android'
3 apply plugin: 'kotlin-android-extensions'
4
5 android {
6     compileSdkVersion 29
7     buildToolsVersion "29.0.3"
8
9     defaultConfig {
10         applicationId "com.example.pittihelloworld"
11         minSdkVersion 16
12         targetSdkVersion 29
13         versionCode 1
14         versionName "1.0"
15
16         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
17     }
18
19     buildTypes {
20         release {
21             minifyEnabled false
22             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
23         }
24     }
25 }
26
27 dependencies {
28     implementation fileTree(dir: "libs", include: ["*.jar"])
29     implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
30     implementation 'androidx.core:core-ktx:1.1.0'
31     implementation 'androidx.appcompat:appcompat:1.1.0'
32     implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
33     testImplementation 'junit:junit:4.12'
34     androidTestImplementation 'androidx.test.ext:junit:1.1.1'
35     androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
36
37 }