blob: d70d2caccd20f3b82414f962661a5afea2ca6a93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.2.4'
}
}
apply plugin: 'com.android.library'
apply plugin: 'bintray-release'
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
minSdkVersion 18
targetSdkVersion 25
}
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
}
|