1+ apply plugin : ' com.android.library'
2+ apply plugin : ' kotlin-android'
3+
4+ apply plugin : ' com.github.dcendents.android-maven'
5+ apply plugin : ' com.jfrog.bintray'
6+
7+ android {
8+ compileSdkVersion versions. compileSdk
9+ buildToolsVersion versions. buildTools
10+
11+ defaultConfig {
12+ minSdkVersion versions. minSdk
13+ targetSdkVersion versions. targetSdk
14+ versionCode versions. code
15+ versionName versions. domainRxName
16+
17+ testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
18+
19+ }
20+
21+ buildTypes {
22+ release {
23+ minifyEnabled false
24+ proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
25+ }
26+ }
27+ }
28+
29+ dependencies {
30+ implementation libraries. kotlin
31+ implementation libraries. rxJava2
32+ }
33+
34+ ext {
35+ bintrayRepo = ' ru.nobird.android'
36+ bintrayName = ' ru.nobird.android.domain'
37+
38+ publishedGroupId = ' ru.nobird.android.domain'
39+ libraryName = ' Domain-Rx'
40+ artifact = ' rx'
41+
42+ libraryDescription = ' Collection of rx domain extensions'
43+
44+ siteUrl = ' https://github.com/eadm/AndroidKit/domain-rx'
45+ gitUrl = ' https://github.com/eadm/AndroidKit/domain-rx'
46+
47+ libraryVersion = versions. domainRxName
48+
49+ developerId = ' eadm'
50+ developerName = ' Ruslan Davletshin'
51+ developerEmail
= ' [email protected] ' 52+
53+ licenseName = ' The Apache Software License, Version 2.0'
54+ licenseUrl = ' http://www.apache.org/licenses/LICENSE-2.0.txt'
55+ allLicenses = [" Apache-2.0" ]
56+ }
57+
58+ apply from : " ../bintray.gradle"
0 commit comments