SSTVEncoder2/app/build.gradle

29 lines
684 B
Groovy
Raw Normal View History

2017-01-03 18:32:45 +01:00
apply plugin: 'com.android.application'
android {
compileSdk 34
2017-01-03 18:32:45 +01:00
defaultConfig {
applicationId "om.sstvencoder"
minSdk 21
targetSdk 34
2024-01-14 13:26:42 +01:00
versionCode 31
versionName "2.10"
2017-01-03 18:32:45 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2023-08-27 14:59:54 +02:00
namespace 'om.sstvencoder'
buildFeatures {
buildConfig true
}
2017-01-03 18:32:45 +01:00
}
dependencies {
2018-10-23 21:50:36 +02:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation "androidx.exifinterface:exifinterface:1.3.7"
2017-01-03 18:32:45 +01:00
}