Skip to content

Commit

Permalink
Prepared for release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SupasinTatiyanupanwong committed Jan 12, 2024
1 parent 83c4fde commit 81a988b
Show file tree
Hide file tree
Showing 10 changed files with 790 additions and 15 deletions.
19 changes: 11 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ The library consists of 4 artifacts; `maps-core`, `maps-google`, `maps-amazon`,
| ``new *Options()`` | ``new *Options()`` | ``new *Options()`` | ``MapKit.new*Options()`` |
| ``*.builder()`` | ``*.builder()`` | ``*.builder()`` | ``MapKit.new*Builder()`` |
| ``*Factory.*()`` | ``*Factory.*()`` | ``*Factory.*()`` | ``MapKit.get*Factory().*()`` |
| ``TileProvider.NO_TILE`` | ``TileProvider.NO_TILE`` | ``TileProvider.NO_TILE`` | ``MapKit.noTile()`` |

### Limitation

Expand All @@ -45,16 +44,17 @@ Add the dependencies for the artifacts you need in the `build.gradle` file for y
```groovy
dependencies {
// Optional - To grant access to the Map Kit API without platform specific implementation
implementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-core:2.2.0'
implementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-core:2.3.0'
// To use the Google Maps SDK via Map Kit
implementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-google:2.2.0'
implementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-google:2.3.0'
// To use the Amazon Maps SDK via Map Kit
implementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-amazon:2.2.0-alpha01'
implementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-amazon:2.3.0'
implementation files('amazon-maps-api-v2.aar')
// To use the HUAWEI Map Kit via Map Kit
implementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-huawei:2.2.0'
implementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-huawei:2.3.0'
}
```

Expand All @@ -74,9 +74,12 @@ android {
}
dependencies {
googleImplementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-google:2.2.0'
amazonImplementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-amazon:2.2.0-alpha01'
huaweiImplementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-huawei:2.2.0'
googleImplementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-google:2.3.0'
amazonImplementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-amazon:2.3.0'
amazonImplementation files('amazon-maps-api-v2.aar')
huaweiImplementation 'dev.supasintatiyanupanwong.libraries.android.kits.maps:maps-huawei:2.3.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion maps-amazon/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ POM_ARTIFACT_ID=maps-amazon
POM_NAME=Map Kit (Amazon)
POM_DESCRIPTION=Provides Amazon Maps integration to the Map Kit.

VERSION_NAME=2.2.0-alpha01
VERSION_NAME=2.3.0
File renamed without changes.
772 changes: 772 additions & 0 deletions maps-core/api/2.3.0.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion maps-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ android {
}

metalava {
filename.set("api/api.txt")
filename.set("api/${project.properties['VERSION_NAME']}.txt")
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion maps-core/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ POM_ARTIFACT_ID=maps-core
POM_NAME=Map Kit (Core)
POM_DESCRIPTION=The Map Kit library provides an extensive framework for map development in Android.

VERSION_NAME=2.2.0
VERSION_NAME=2.3.0
2 changes: 1 addition & 1 deletion maps-google/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ POM_ARTIFACT_ID=maps-google
POM_NAME=Map Kit (Google)
POM_DESCRIPTION=Provides Google Maps integration to the Map Kit.

VERSION_NAME=2.2.0
VERSION_NAME=2.3.0
2 changes: 1 addition & 1 deletion maps-huawei/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ POM_ARTIFACT_ID=maps-huawei
POM_NAME=Map Kit (Huawei)
POM_DESCRIPTION=Provides Huawei Maps integration to the Map Kit.

VERSION_NAME=2.2.0
VERSION_NAME=2.3.0
2 changes: 1 addition & 1 deletion maps-nil/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ POM_ARTIFACT_ID=maps-nil
POM_NAME=Map Kit (Nil)
POM_DESCRIPTION=Provides nil integration to the Map Kit.

VERSION_NAME=2.2.0
VERSION_NAME=2.3.0
2 changes: 1 addition & 1 deletion maps-tomtom/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ POM_ARTIFACT_ID=maps-tomtom
POM_NAME=Map Kit (TomTom)
POM_DESCRIPTION=Provides TomTom Maps integration to the Map Kit.

VERSION_NAME=2.2.0
VERSION_NAME=N/A

0 comments on commit 81a988b

Please sign in to comment.