Skip to content

Commit 124158b

Browse files
committed
added licenses
1 parent bb4b7f6 commit 124158b

File tree

4 files changed

+45
-2
lines changed

4 files changed

+45
-2
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ buildscript {
77
}
88
dependencies {
99
classpath 'com.android.tools.build:gradle:3.4.0'
10+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
11+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
1012

1113
// NOTE: Do not place your application dependencies here; they belong
1214
// in the individual module build.gradle files

droidLocationLibrary/build.gradle

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,39 @@
11
apply plugin: 'com.android.library'
22

3-
//noinspection GroovyMissingReturnStatement
3+
4+
ext {
5+
bintrayRepo = 'droidlocation'
6+
bintrayName = 'droidlocationlibrary'
7+
8+
publishedGroupId = 'ax.synt'
9+
libraryName = 'DroidLocation'
10+
artifact = 'droidlocation'
11+
12+
libraryDescription = 'Getting location updates requires lots of boilerplate code in Android, You need to take care of\n' +
13+
'\n' +
14+
'Google Play services availability Check, Update Google play Service Dialog\n' +
15+
'Creation of GoogleApiClient and its callbacks connected,disconnected etc.\n' +
16+
'Stopping and releasing resources for location updates\n' +
17+
'Handling Location permission scenarios\n' +
18+
'Checking Location services are On or Off\n' +
19+
'Getting last known location is not so easy either\n' +
20+
'Fallback to last known location if not getting location after certain duration\n' +
21+
'DroidLocation does all this stuff in background, so that you can concentrate on your business logic than handling all above'
22+
23+
siteUrl = 'https://github.com/JobGetabu/DroidLocation'
24+
gitUrl = 'https://github.com/JobGetabu/DroidLocation.git'
25+
26+
libraryVersion = '1.0.0'
27+
28+
developerId = 'JobGetabu'
29+
developerName = 'Job Getabu'
30+
developerEmail = '[email protected]'
31+
32+
licenseName = 'The Apache Software License, Version 2.0'
33+
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
34+
allLicenses = ["Apache-2.0"]
35+
}
36+
437
android {
538
compileSdkVersion 28
639

@@ -23,4 +56,7 @@ dependencies {
2356
provided "com.google.android.gms:play-services-location:16.0.0"
2457

2558
compile 'com.android.support:appcompat-v7:28.0.0'
26-
}
59+
}
60+
61+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
62+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

licenses/android-sdk-license

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
8933bad161af4178b1185d1a37fbf41ea5269c55
3+
d56f5187479451eabf01fb78af6dfcb131a6481e

licenses/intel-android-extra-license

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
d975f751698a77b662f1254ddbeed3901e976f5a

0 commit comments

Comments
 (0)