forked from hannesa2/android-maps-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
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
7 changed files
with
19 additions
and
207 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,48 +1,38 @@ | ||
[![Build Status](https://travis-ci.org/mg6maciej/android-maps-extensions.svg?branch=develop)](https://travis-ci.org/mg6maciej/android-maps-extensions) | ||
[![](https://jitpack.io/v/bfacumat/android-maps-extensions.svg)](https://jitpack.io/#bfacumat/android-maps-extensions) | ||
|
||
Android Maps Extensions | ||
======================= | ||
|
||
[![Join the chat at https://gitter.im/mg6maciej/android-maps-extensions](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mg6maciej/android-maps-extensions?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
|
||
Library extending capabilities of Google Maps Android API v2. | ||
While [Google Maps Android API v2](https://developers.google.com/maps/documentation/android-api/) | ||
is a huge leap forward comapared to its predecessor, | ||
it lacks commonly used patterns like marker clustering. | ||
This library aims to fill this gap by adding many useful features | ||
and improving on the responsiveness issues of the official Google library. | ||
See [wiki](https://github.com/mg6maciej/android-maps-extensions/wiki) for more details. | ||
|
||
Usage | ||
===== | ||
See [original repository](https://github.com/mg6maciej/android-maps-extensions) for more details. | ||
|
||
You may use any version of [Google Play Services](https://developer.android.com/google/play-services/index.html) from 3.2.65 (the last working on Android API 8) or above. | ||
|
||
Gradle | ||
------ | ||
```Groovy | ||
dependencies { | ||
compile 'com.androidmapsextensions:android-maps-extensions:2.4.0' | ||
compile 'com.google.android.gms:play-services-maps:10.2.0' | ||
implementation 'com.github.bfacumat:android-maps-extensions:4.0.1' | ||
implementation 'com.google.android.gms:play-services-maps:17.0.0' | ||
} | ||
``` | ||
|
||
Developed by | ||
Forked by | ||
============ | ||
|
||
* Maciej Górski - <maciek.gorski@gmail.com> | ||
* Facundo Matias Beron - <facundo.beron@gmail.com> | ||
|
||
Contributing | ||
|
||
Developed by | ||
============ | ||
|
||
Contributions are welcome and much appreciated. | ||
Just [fork](https://github.com/mg6maciej/android-maps-extensions/fork), | ||
create [a feature branch](http://nvie.com/posts/a-successful-git-branching-model/), | ||
do your things and send a pull request. | ||
You may also contribute by creating or commenting on | ||
[issues](https://github.com/mg6maciej/android-maps-extensions/issues), | ||
edititing or adding [wiki](https://github.com/mg6maciej/android-maps-extensions/wiki) | ||
or even do cool things like creating a YouTube video. | ||
* Maciej Górski - <[email protected]> | ||
|
||
|
||
License | ||
======= | ||
|
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,13 +1,12 @@ | ||
apply plugin: 'com.android.library' | ||
apply plugin: 'maven' | ||
apply plugin: 'signing' | ||
apply plugin: 'com.github.dcendents.android-maven' | ||
|
||
group='com.github.bfacumat' | ||
|
||
tasks.withType(JavaCompile) { | ||
options.encoding = 'UTF-8' | ||
} | ||
|
||
def isCI = System.env.CI == "true" | ||
|
||
ext { | ||
localCompileSdkVersion = project.hasProperty("AME_COMPILE_SDK_VERSION") ? AME_COMPILE_SDK_VERSION : 28 | ||
localMinSdkVersion = project.hasProperty("AME_MIN_SDK_VERSION") ? AME_MIN_SDK_VERSION : 14 | ||
|
@@ -20,9 +19,7 @@ android { | |
defaultConfig { | ||
minSdkVersion localMinSdkVersion | ||
} | ||
dexOptions { | ||
preDexLibraries = !isCI | ||
} | ||
|
||
lintOptions { | ||
abortOnError false | ||
} | ||
|
@@ -31,76 +28,3 @@ android { | |
dependencies { | ||
implementation "com.google.android.gms:play-services-maps:${playServicesVersion}" | ||
} | ||
|
||
group = 'com.androidmapsextensions' | ||
version = '2.4.1-SNAPSHOT' | ||
|
||
if (!isCI) { | ||
|
||
signing { | ||
sign configurations.archives | ||
} | ||
|
||
task javadocJar(type: Jar) { | ||
classifier = 'javadoc' | ||
} | ||
|
||
task sourcesJar(type: Jar) { | ||
classifier = 'sources' | ||
from android.sourceSets.main.java.sourceFiles | ||
} | ||
|
||
artifacts { | ||
archives javadocJar | ||
archives sourcesJar | ||
} | ||
|
||
uploadArchives.repositories.mavenDeployer { | ||
|
||
beforeDeployment { | ||
MavenDeployment deployment -> signing.signPom(deployment) | ||
} | ||
|
||
repository(url: 'https://oss.sonatype.org/service/local/staging/deploy/maven2') { | ||
authentication(userName: sonatypeUserName, password: sonatypePassword) | ||
} | ||
snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots') { | ||
authentication(userName: sonatypeUserName, password: sonatypePassword) | ||
} | ||
|
||
pom.project { | ||
name 'Android Maps Extensions' | ||
description 'Library extending capabilities of Google Maps Android API v2' | ||
inceptionYear '2013' | ||
url 'http://AndroidMapsExtensions.com' | ||
packaging 'aar' | ||
|
||
developers { | ||
developer { | ||
name 'Maciej Górski' | ||
id 'mg6maciej' | ||
email '[email protected]' | ||
url 'https://github.com/mg6maciej' | ||
} | ||
} | ||
|
||
licenses { | ||
license { | ||
name 'The Apache Software License, Version 2.0' | ||
url 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
distribution 'repo' | ||
} | ||
} | ||
|
||
scm { | ||
url 'https://github.com/mg6maciej/android-maps-extensions' | ||
connection 'scm:git:[email protected]:mg6maciej/android-maps-extensions.git' | ||
developerConnection 'scm:git:[email protected]:mg6maciej/android-maps-extensions.git' | ||
} | ||
} | ||
|
||
pom.whenConfigured { | ||
pom -> pom.dependencies = [] | ||
} | ||
} | ||
} |
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 @@ | ||
signing.keyId=F7DEEEE9 | ||
signing.password= | ||
signing.secretKeyRingFile= | ||
|
||
sonatypeUserName= | ||
sonatypePassword= |
This file was deleted.
Oops, something went wrong.