File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,11 +8,10 @@ buildscript {
88
99 }
1010 dependencies {
11- classpath ' com.android.tools.build:gradle:3.6.2 '
11+ classpath ' com.android.tools.build:gradle:3.6.3 '
1212 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
13-
14- // NOTE: Do not place your application dependencies here; they belong
15- // in the individual module build.gradle files
13+ classpath ' com.github.dcendents:android-maven-gradle-plugin:2.1'
14+ classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
1615 }
1716}
1817
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ android {
2626}
2727
2828apply from : " dependencies.gradle"
29+ apply from : " publish.gradle"
2930
3031dependencies {
3132 implementation fileTree(dir : ' libs' , include : [' *.jar' ])
Original file line number Diff line number Diff line change 1+ ext {
2+ bintrayRepo = ' MutableDataSource'
3+ bintrayName = ' dev.sarquella.mutabledatasource'
4+
5+ publishedGroupId = ' dev.sarquella.mutabledatasource'
6+ artifact = ' mutabledatasource'
7+
8+ libraryVersion = ' 0.1.0'
9+
10+ libraryDescription = ' A wrapper around Android Paging Library\' s DataSources to ' +
11+ ' allow the free mutation of their resulting items.'
12+
13+ gitUrl = ' https://github.com/Sarquella/MutableDataSource'
14+
15+ developerId = ' sarquella'
16+ developerName = ' Adrià Sarquella Farrés'
17+ developerEmail = ' adria@sarquella.dev'
18+
19+ licenseId = ' Apache-2.0'
20+ licenseName = ' The Apache Software License, Version 2.0'
21+ licenseUrl = ' http://www.apache.org/licenses/LICENSE-2.0.txt'
22+ }
23+
24+ apply from : ' https://raw.githubusercontent.com/Sarquella/JCenter-Uploader/master/jcenter_uploader.gradle'
You can’t perform that action at this time.
0 commit comments