SSTVEncoder2/app/build.gradle

26 lines
646 B
Groovy
Raw Normal View History

2017-01-03 18:32:45 +01:00
apply plugin: 'com.android.application'
android {
2023-08-27 14:59:54 +02:00
compileSdk 33
2017-01-03 18:32:45 +01:00
defaultConfig {
applicationId "om.sstvencoder"
2022-10-31 14:02:38 +01:00
minSdkVersion 21
2023-08-27 10:13:56 +02:00
targetSdkVersion 33
2023-08-27 11:43:40 +02:00
versionCode 30
versionName "2.9"
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'
2017-01-03 18:32:45 +01:00
}
dependencies {
2018-10-23 21:50:36 +02:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
2023-08-27 10:13:56 +02:00
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation "androidx.exifinterface:exifinterface:1.3.6"
2017-01-03 18:32:45 +01:00
}