Skip to content

Commit 63625a7

Browse files
committed
Gradle, sdk, lib updates
1 parent f64e8b4 commit 63625a7

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat Oct 10 12:02:18 YEKT 2020
1+
#Mon Apr 24 17:18:58 KGT 2023
22
distributionBase=GRADLE_USER_HOME
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
34
distributionPath=wrapper/dists
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
6+
zipStoreBase=GRADLE_USER_HOME

madlocationmanager/build.gradle

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
plugins {
22
id 'com.android.library'
33
id 'maven-publish'
4+
id "com.jfrog.bintray" version "1.8.5"
5+
46
}
57

68
group='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

0 commit comments

Comments
 (0)