2017-01-03 18:32:45 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
|
|
android {
|
2018-10-23 21:50:36 +02:00
|
|
|
compileSdkVersion 28
|
2017-01-03 18:32:45 +01:00
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "om.sstvencoder"
|
|
|
|
|
minSdkVersion 15
|
2018-10-23 21:50:36 +02:00
|
|
|
targetSdkVersion 28
|
2018-07-16 21:14:53 +02:00
|
|
|
versionCode 23
|
|
|
|
|
versionName "2.2"
|
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 'com.android.support:appcompat-v7:28.0.0'
|
|
|
|
|
implementation "com.android.support:exifinterface:28.0.0"
|
2017-01-03 18:32:45 +01:00
|
|
|
}
|