SSTVEncoder2/app/build.gradle

25 lines
622 B
Groovy
Raw Normal View History

2017-01-03 18:32:45 +01:00
apply plugin: 'com.android.application'
android {
2021-07-25 13:48:13 +02:00
compileSdkVersion 32
2017-01-03 18:32:45 +01:00
defaultConfig {
applicationId "om.sstvencoder"
2022-10-31 14:02:38 +01:00
minSdkVersion 21
2021-07-25 13:48:13 +02:00
targetSdkVersion 32
2022-12-03 17:06:33 +01:00
versionCode 28
versionName "2.7"
2017-01-03 18:32:45 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
2018-10-23 21:50:36 +02:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
2021-07-25 13:48:13 +02:00
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation "androidx.exifinterface:exifinterface:1.3.5"
2017-01-03 18:32:45 +01:00
}