forked from syntaxltd/DroidLocation
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,39 @@ | ||
apply plugin: 'com.android.library' | ||
|
||
//noinspection GroovyMissingReturnStatement | ||
|
||
ext { | ||
bintrayRepo = 'droidlocation' | ||
bintrayName = 'droidlocationlibrary' | ||
|
||
publishedGroupId = 'ax.synt' | ||
libraryName = 'DroidLocation' | ||
artifact = 'droidlocation' | ||
|
||
libraryDescription = 'Getting location updates requires lots of boilerplate code in Android, You need to take care of\n' + | ||
'\n' + | ||
'Google Play services availability Check, Update Google play Service Dialog\n' + | ||
'Creation of GoogleApiClient and its callbacks connected,disconnected etc.\n' + | ||
'Stopping and releasing resources for location updates\n' + | ||
'Handling Location permission scenarios\n' + | ||
'Checking Location services are On or Off\n' + | ||
'Getting last known location is not so easy either\n' + | ||
'Fallback to last known location if not getting location after certain duration\n' + | ||
'DroidLocation does all this stuff in background, so that you can concentrate on your business logic than handling all above' | ||
|
||
siteUrl = 'https://github.com/JobGetabu/DroidLocation' | ||
gitUrl = 'https://github.com/JobGetabu/DroidLocation.git' | ||
|
||
libraryVersion = '1.0.0' | ||
|
||
developerId = 'JobGetabu' | ||
developerName = 'Job Getabu' | ||
developerEmail = '[email protected]' | ||
|
||
licenseName = 'The Apache Software License, Version 2.0' | ||
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
allLicenses = ["Apache-2.0"] | ||
} | ||
|
||
android { | ||
compileSdkVersion 28 | ||
|
||
|
@@ -23,4 +56,7 @@ dependencies { | |
provided "com.google.android.gms:play-services-location:16.0.0" | ||
|
||
compile 'com.android.support:appcompat-v7:28.0.0' | ||
} | ||
} | ||
|
||
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle' | ||
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
8933bad161af4178b1185d1a37fbf41ea5269c55 | ||
d56f5187479451eabf01fb78af6dfcb131a6481e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
d975f751698a77b662f1254ddbeed3901e976f5a |