File tree Expand file tree Collapse file tree 3 files changed +35
-4
lines changed Expand file tree Collapse file tree 3 files changed +35
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ buildscript {
1010 google()
1111 }
1212 dependencies {
13- classpath ' com.android.tools.build:gradle:7.2.0 '
13+ classpath ' com.android.tools.build:gradle:7.3.1 '
1414
1515 // NOTE: Do not place your application dependencies here; they belong
1616 // in the individual module build.gradle files
Original file line number Diff line number Diff line change 1- # Sat Oct 10 12:02:18 YEKT 2020
1+ # Mon Apr 24 17:18:58 KGT 2023
22distributionBase =GRADLE_USER_HOME
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.5-bin.zip
34distributionPath =wrapper/dists
4- zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl = https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
6+ zipStoreBase = GRADLE_USER_HOME
Original file line number Diff line number Diff line change 11plugins {
22 id ' com.android.library'
33 id ' maven-publish'
4+ id " com.jfrog.bintray" version " 1.8.5"
5+
46}
57
68group= ' com.github.maddevsio'
@@ -108,4 +110,33 @@ project.afterEvaluate {
108110 }
109111 }
110112}
113+ bintray {
114+ dryRun = false
115+ publish = true
116+ override = true
117+ user = System . getenv(' BINTRAY_USER' ) ?: (project. hasProperty(' bintrayUser' ) ? project. property(' bintrayUser' ) : ' ' )
118+ key = System . getenv(' BINTRAY_KEY' ) ?: (project. hasProperty(' bintrayKey' ) ? project. property(' bintrayKey' ) : ' ' )
119+ publications = [' mavenPublication' ]
120+
121+ pkg {
122+ repo = ' maven'
123+ name = ' mad-location-manager'
124+ userOrg = ' Lezh1k'
125+ description = ' This is library for GPS and Accelerometer data "fusion" with Kalman filter'
126+ publications = [' mavenPublication' ]
127+ licenses = [' MIT' ]
128+ vcsUrl = ' https://github.com/maddevsio/mad-location-manager.git'
129+ websiteUrl = ' https://github.com/maddevsio/mad-location-manager.git'
130+ issueTrackerUrl = ' https://github.com/maddevsio/mad-location-manager/issues'
131+ githubRepo = ' maddevsio/mad-location-manager'
132+ githubReleaseNotesFile = ' README.md'
133+ version {
134+ name = releaseVersion
135+ desc = ' Mad Location Manager v' + releaseVersion
136+ released = new Date ()
137+ vcsTag = releaseVersion
138+ }
139+ }
140+ }
141+
111142
You can’t perform that action at this time.
0 commit comments