comparison app/build.gradle @ 34:19c584b29679

Add gradle files, bump rev to bypass installer cache misfeature.
author David Barts <n5jrn@me.com>
date Thu, 11 Mar 2021 17:31:56 -0800
parents
children 70f1d11d53ad
comparison
equal deleted inserted replaced
33:bead5d7e8c69 34:19c584b29679
1 plugins {
2 id 'com.android.application'
3 id 'kotlin-android'
4 }
5
6 android {
7 compileSdkVersion 30
8 buildToolsVersion "30.0.3"
9
10 defaultConfig {
11 applicationId "com.bartsent.simpleresizer"
12 minSdkVersion 23
13 targetSdkVersion 30
14 versionCode 2
15 versionName "1.01"
16
17 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
18 }
19
20 buildTypes {
21 release {
22 minifyEnabled false
23 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
24 }
25 }
26 buildFeatures {
27 dataBinding true
28 viewBinding true
29 }
30 compileOptions {
31 sourceCompatibility JavaVersion.VERSION_1_8
32 targetCompatibility JavaVersion.VERSION_1_8
33 }
34 kotlinOptions {
35 jvmTarget = '1.8'
36 }
37 }
38
39 dependencies {
40
41 implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
42 implementation 'androidx.core:core-ktx:1.3.2'
43 implementation 'androidx.appcompat:appcompat:1.2.0'
44 implementation 'com.google.android.material:material:1.3.0'
45 implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
46 implementation 'androidx.preference:preference:1.1.1'
47 testImplementation 'junit:junit:4.+'
48 androidTestImplementation 'androidx.test.ext:junit:1.1.2'
49 androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
50 }