aboutsummaryrefslogtreecommitdiffstats
path: root/libs/android-transcoder/build.gradle
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2017-02-01 21:56:23 +0100
committerChristian Schneppe <christian@pix-art.de>2017-02-01 21:56:23 +0100
commitf928d510e42d371c0a7ccb929dbffe5fadd1d989 (patch)
treef30e4f021d5574ffe03a1e41b66cca3dedaa195e /libs/android-transcoder/build.gradle
parent1d8c8ea310ada403431f86b9b14af33a04778def (diff)
add android-transcoder directly into libs
Diffstat (limited to 'libs/android-transcoder/build.gradle')
-rw-r--r--libs/android-transcoder/build.gradle40
1 files changed, 40 insertions, 0 deletions
diff --git a/libs/android-transcoder/build.gradle b/libs/android-transcoder/build.gradle
new file mode 100644
index 000000000..1b6e8f17c
--- /dev/null
+++ b/libs/android-transcoder/build.gradle
@@ -0,0 +1,40 @@
+buildscript {
+ repositories {
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.novoda:bintray-release:0.2.4'
+ }
+}
+
+apply plugin: 'com.android.library'
+apply plugin: 'bintray-release'
+
+android {
+ compileSdkVersion 24
+ buildToolsVersion "24.0.1"
+
+ defaultConfig {
+ minSdkVersion 18
+ targetSdkVersion 24
+ }
+
+ 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
+}