SSTVEncoder2/app/build.gradle

25 lines
604 B
Groovy
Raw Normal View History

2017-01-03 18:32:45 +01:00
apply plugin: 'com.android.application'
android {
2018-03-10 12:49:32 +01:00
compileSdkVersion 26
2017-01-03 18:32:45 +01:00
defaultConfig {
applicationId "om.sstvencoder"
minSdkVersion 15
2018-03-10 12:49:32 +01:00
targetSdkVersion 26
2017-03-12 09:03:12 +01:00
versionCode 22
versionName "2.1"
2017-01-03 18:32:45 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
2018-03-10 12:49:32 +01:00
compile 'com.android.support:appcompat-v7:26.1.0'
compile "com.android.support:exifinterface:26.1.0"
2017-01-03 18:32:45 +01:00
}