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 {
compileSdkVersion 29
2017-01-03 18:32:45 +01:00
defaultConfig {
applicationId "om.sstvencoder"
minSdkVersion 15
targetSdkVersion 29
2018-10-25 18:41:59 +02:00
versionCode 24
versionName "2.3"
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'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation "androidx.exifinterface:exifinterface:1.2.0"
2017-01-03 18:32:45 +01:00
}