Skip to content

Commit

Permalink
Settings change
Browse files Browse the repository at this point in the history
  • Loading branch information
bfacumat committed Feb 3, 2020
1 parent e939d1e commit fbeba58
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 207 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ jdk: oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-25.0.2
- android-23
- android-25
- tools
- build-tools-28.0.2
- android-28
- extra-android-m2repository
- extra-google-m2repository
30 changes: 10 additions & 20 deletions README.md
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
=======
Expand Down
6 changes: 1 addition & 5 deletions android-maps-extensions-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ 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
Expand All @@ -18,9 +16,7 @@ android {
minSdkVersion localMinSdkVersion
targetSdkVersion 28
}
dexOptions {
preDexLibraries = !isCI
}

lintOptions {
abortOnError false
}
Expand Down
84 changes: 4 additions & 80 deletions android-maps-extensions/build.gradle
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
Expand All @@ -20,9 +19,7 @@ android {
defaultConfig {
minSdkVersion localMinSdkVersion
}
dexOptions {
preDexLibraries = !isCI
}

lintOptions {
abortOnError false
}
Expand All @@ -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 = []
}
}
}
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.14.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}

Expand All @@ -15,5 +15,3 @@ allprojects {
google()
}
}

apply plugin: 'com.github.ben-manes.versions'
5 changes: 0 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1 @@
signing.keyId=F7DEEEE9
signing.password=
signing.secretKeyRingFile=

sonatypeUserName=
sonatypePassword=
90 changes: 0 additions & 90 deletions gradlew.bat

This file was deleted.

0 comments on commit fbeba58

Please sign in to comment.