2017-01-03 18:32:45 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
|
|
android {
|
2024-08-14 20:00:09 +02:00
|
|
|
compileSdk 34
|
2017-01-03 18:32:45 +01:00
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "om.sstvencoder"
|
2024-08-14 20:00:09 +02:00
|
|
|
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'
|
2024-08-14 20:00:09 +02:00
|
|
|
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'])
|
2024-08-14 20:00:09 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
|
|
|
|
implementation "androidx.exifinterface:exifinterface:1.3.7"
|
2017-01-03 18:32:45 +01:00
|
|
|
}
|