Skip to content

Commit

Permalink
added licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
JobGetabu committed Apr 29, 2019
1 parent bb4b7f6 commit 124158b
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
40 changes: 38 additions & 2 deletions droidLocationLibrary/build.gradle
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

Expand All @@ -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'
3 changes: 3 additions & 0 deletions licenses/android-sdk-license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

8933bad161af4178b1185d1a37fbf41ea5269c55
d56f5187479451eabf01fb78af6dfcb131a6481e
2 changes: 2 additions & 0 deletions licenses/intel-android-extra-license
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

d975f751698a77b662f1254ddbeed3901e976f5a

0 comments on commit 124158b

Please sign in to comment.