This repository has been archived on 2025-01-10. You can view files and clone it, but cannot push or open issues or pull requests.
PiratX-Archive/libs/android-transcoder/build.gradle
2017-08-03 10:33:50 +02:00

40 lines
855 B
Groovy

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.2.4'
}
}
apply plugin: 'com.android.library'
apply plugin: 'bintray-release'
android {
compileSdkVersion 26
buildToolsVersion '26.0.1'
defaultConfig {
minSdkVersion 18
targetSdkVersion 26
}
buildTypes {
release {
zipAlignEnabled true
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
publish {
groupId = 'net.ypresto.androidtranscoder'
artifactId = 'android-transcoder'
version = '0.2.0'
licences = ['Apache-2.0']
website = 'https://github.com/ypresto/android-transcoder'
autoPublish = false
dryRun = false
}