Enrique López Mañas
0595432ad3
chore: unified Java/Kotlin project ( #2026 )
...
* chore: unified Kotlin and Java modules
* chore: unified resources
* chore: removed Kotlin
* chore: headers
* chore: headers
* chore: headers
* chore: headers
* chore: added insets
* chore: headers
* chore: renamed
* fix: Refactor map creation, centralize Map ID, add Kotlin boundary controls
This commit refactors how map fragments and Map IDs are handled across the Java and Kotlin demo applications, and introduces feature parity for boundary layer controls in the Kotlin demo.
Key changes include:
- **Programmatic Map Fragment Creation:**
- Replaced static `<fragment>` map declarations with `<FrameLayout>` containers (`map_fragment_container`) in `data_driven_boundaries_demo.xml` and `data_driven_styling_demo.xml` layouts.
- Modified `DataDrivenBoundariesActivity` and `DataDrivenDatasetStylingActivity` (Java & Kotlin) to instantiate `SupportMapFragment` programmatically using `SupportMapFragment.newInstance(mapOptions)`.
- Map options (`GoogleMapOptions`) are now created with the dynamically retrieved Map ID before fragment creation.
- this allows moving the Map ID out of the xml files
- **Centralized Map ID and Configuration Logic:**
- Introduced `ApiDemoApplication` in both Java (`java-app`) and Kotlin (`kotlin-app`) modules.
- This class centralizes Map ID retrieval, checking `BuildConfig.MAP_ID` first, then the `R.string.map_id` resource, providing a consistent source.
- The Kotlin `ApiDemoApplication` also includes API Key validation on application startup.
- **Kotlin DataDrivenBoundaries Feature Enhancement:**
- Added boundary layer selection controls (popup menu via `button_feature_type`) to the Kotlin `DataDrivenBoundariesActivity`, achieving parity with the Java version's functionality.
- Implemented state management for toggling Locality, Administrative Area Level 1, and Country layers.
- Added dynamic styling logic to apply/remove styles based on layer visibility.
- Updated feature click handling for country selection, respecting layer activation state.
- **Miscellaneous Improvements:**
- Added distinct demo titles (`demo_title_java`, `demo_title_kotlin`) in `strings.xml` for better app identification.
- Updated resource references within Java/Kotlin activities for cleaner imports (e.g., `R.id...` instead of fully qualified names).
* chore: address various lint issues
* fix: explicitly bind checkboxes in the UI
---------
Co-authored-by: dkhawk <107309+dkhawk@users.noreply.github.com>
2025-04-14 14:08:08 -06:00
semantic-release-bot
a87766a562
chore(release): 1.16.0 [skip ci]
...
# [1.16.0](https://github.com/googlemaps-samples/android-samples/compare/v1.15.1...v1.16.0 ) (2025-03-04)
### Features
* added material to samples ([#1991 ](https://github.com/googlemaps-samples/android-samples/issues/1991 )) ([78c0aed](78c0aed172 ))
2025-03-04 23:03:25 +00:00
Enrique López Mañas
78c0aed172
feat: added material to samples ( #1991 )
...
* feat: added material to samples
* feat: WIP
* feat: added material to samples
* feat: some more samples
* feat: base activity
* feat: some more samples
2025-03-04 15:54:40 -07:00
semantic-release-bot
0ebeb1f2b1
chore(release): 1.15.1 [skip ci]
...
## [1.15.1](https://github.com/googlemaps-samples/android-samples/compare/v1.15.0...v1.15.1 ) (2025-02-14)
### Bug Fixes
* support devices with cutouts for DataDrivenDatasetStylingActivity.java demo ([#1979 ](https://github.com/googlemaps-samples/android-samples/issues/1979 )) ([683b21d](683b21da11 ))
2025-02-14 22:57:44 +00:00
Dale Hawkins
683b21da11
fix: support devices with cutouts for DataDrivenDatasetStylingActivity.java demo ( #1979 )
...
* fix: support devices with cutouts for DataDrivenDatasetStylingActivity.java demo
* fix: remove unnecessary 'res/' from paths in README.md file
* feat(apidemos): enhance DataDrivenBoundariesActivity UI and boundary selection
This commit enhances the DataDrivenBoundariesActivity demo with UI and
functionality improvements focusing on boundary type selection and visual
enhancements.
- Implements Material Design theming and UI elements.
- Adds boundary type selection via PopupMenu (Locality, Admin Area, Country).
- Refactors styling and implements persistent country selection.
- Handles system UI insets for improved display.
These changes improve the demo's user experience and code structure,
better showcasing data-driven boundary styling.
* feat(apidemos): configure dataset-specific zoom levels for datasets demo
This commit introduces dataset-specific zoom levels to the DataDrivenDatasetStylingActivity, enhancing the user experience when switching between datasets.
- Adds a `zoomLevel` field to the `DataSet` class to store the desired zoom level for each dataset.
- Updates the `dataSets` array to include appropriate zoom levels for Boulder, New York, and Kyoto datasets.
- Modifies the `centerMapOnLocation` method to accept a `zoomLevel` parameter, allowing it to be dynamically set.
- Updates the `switchDataSet` method to utilize the `zoomLevel` from the selected `DataSet` when centering the map, ensuring the map zooms to the optimal level for each dataset.
- Removes the previously hardcoded `ZOOM_LEVEL` constant, as the zoom level is now dataset-dependent.
These changes ensure that when a user selects a dataset, the map automatically zooms to a relevant level for that specific dataset, improving clarity and usability of the demo.
Also adds missing copyright header.
2025-02-14 15:51:21 -07:00
semantic-release-bot
45d85ac59c
chore(release): 1.15.0 [skip ci]
...
# [1.15.0](https://github.com/googlemaps-samples/android-samples/compare/v1.14.0...v1.15.0 ) (2025-02-13)
### Features
* Data-Driven styling samples ([#1771 ](https://github.com/googlemaps-samples/android-samples/issues/1771 )) ([f4654e6](f4654e60a2 ))
2025-02-13 22:44:06 +00:00
Enrique López Mañas
f4654e60a2
feat: Data-Driven styling samples ( #1771 )
...
* fix: import rememberMarkerState and use the marker state correctly
* feat: dataset styling Kotlin samples
* feat: added DataDrivenBoundariesActivity.kt
* feat: added DataDrivenBoundariesActivity
* feat: added documentation
* feat: added header
* chore: changed MY_MAP_ID to DEMO_MAP_ID
* feat: moved data files to raw
* feat: added DataDrivenBoundariesActivity
* feat: removed unused files
* feat: map id
* chore: replace System.out.println with Log.d
* feat: added region tags
* feat: added different set of DDS
* feat: added different set of DDS
* feat: replacing files
feat: replacing files
* feat: replacing files
* feat: compileSdk 35
* feat: compileSdk 35
* chore: updated README file
* feat: trying to force different datasets
* feat: updated samples
* feat: Add data-driven styling for datasets
This commit introduces data-driven styling for datasets in the ApiDemos application.
The following changes were made:
Added a custom Application class (ApiDemoApplication) to check for the presence and validity of the API key during startup.
Added a new data structure (DataSet) to hold information about each dataset, including its label, dataset ID, location, and styling callback.
Updated the DataDrivenDatasetStylingActivity to use the new data structure and styling callbacks.
Rename the dataset input files to better reflect there contents.
* fix: moves the dataset ids to the secrets.properties file
* feat: significant rewrite to of DataDrivenDatasetStylingActivity
* Makes the app look better on full screen with a cutout
* Uses material elements
* Switch to using secrets for the data set ids
* more of a convenience to prevent having to remove the ids when submitting
* moves dataset data files to common area since they are not used directly by the app
* Detailed instructions for uploading the data to console (WIP)
* fix: exports the data driven styling activities so they can be run directly
* feat: added header
* feat: change ubuntu-latest
* feat: change ubuntu-latest
* feat: change ubuntu-latest
---------
Co-authored-by: dkhawk <107309+dkhawk@users.noreply.github.com>
2025-02-13 15:37:43 -07:00
Dale Hawkins
95f70aafdd
chore: bump versions for gradle (8.8.0), kotlin(2.1.0), the targetSd… ( #1950 )
...
chore: bump versions for gradle (8.8.0), kotlin(2.1.0)), the targetSdk(35) and other deps
2025-01-28 09:15:00 -07:00
semantic-release-bot
b404c6f9f2
chore(release): 1.14.0 [skip ci]
...
# [1.14.0](https://github.com/googlemaps-samples/android-samples/compare/v1.13.0...v1.14.0 ) (2025-01-14)
### Bug Fixes
* add dynamic key values to secrets.properties in idx template ([#1814 ](https://github.com/googlemaps-samples/android-samples/issues/1814 )) ([46abfae](46abfae9ce ))
* always use secrets.properties for storing the API keys ([#1812 ](https://github.com/googlemaps-samples/android-samples/issues/1812 )) ([561e829](561e82926e ))
* Exports sample activities so they can be run directly ([#1808 ](https://github.com/googlemaps-samples/android-samples/issues/1808 )) ([206cdcf](206cdcf1c3 ))
* fixed release config ([#1944 ](https://github.com/googlemaps-samples/android-samples/issues/1944 )) ([6b62127](6b62127926 ))
* fixed release step ([#1770 ](https://github.com/googlemaps-samples/android-samples/issues/1770 )) ([cb53eb4](cb53eb4999 ))
* fixed secrets in wearable module ([#1788 ](https://github.com/googlemaps-samples/android-samples/issues/1788 )) ([5ea1951](5ea1951521 ))
* import rememberMarkerState and use the marker state correctly ([#1787 ](https://github.com/googlemaps-samples/android-samples/issues/1787 )) ([5095437](5095437b57 ))
* prevents infinite recursion when getting the location permission ([#1813 ](https://github.com/googlemaps-samples/android-samples/issues/1813 )) ([5790ff2](5790ff2ad7 ))
* Re-add MarkerDemoActivity in Kotlin sample ([#1916 ](https://github.com/googlemaps-samples/android-samples/issues/1916 )) ([66db0fa](66db0fa2cf ))
* stop memory leak in CoordTileProvider ([#1929 ](https://github.com/googlemaps-samples/android-samples/issues/1929 )) ([55c6297](55c629717a ))
* Update emulator host in dev.nix for IDX ([#1893 ](https://github.com/googlemaps-samples/android-samples/issues/1893 )) ([26e5bd3](26e5bd3aba ))
* Updates secrets in app-level build.gradle.kts files to set secrets.properties as propertiesFileName. ([#1785 ](https://github.com/googlemaps-samples/android-samples/issues/1785 )) ([dcec2ce](dcec2ce448 ))
* using rememberMarkerState instead of MarkerState ([#1768 ](https://github.com/googlemaps-samples/android-samples/issues/1768 )) ([6007cc8](6007cc87f5 ))
### Features
* Introduces an idx folder containing an IDX template, enabling users to open Android tutorials directly in the IDX IDE. ([#1757 ](https://github.com/googlemaps-samples/android-samples/issues/1757 )) ([b32a515](b32a51558f ))
* tooling modernization ([#1753 ](https://github.com/googlemaps-samples/android-samples/issues/1753 )) ([42f3887](42f3887bac ))
2025-01-14 17:37:24 +00:00
Dale Hawkins
e0b85bcb7a
build: update Android to 35, kotlin to 2.0.21, lifecycle to 2.8.7 ( #1931 )
...
* build: update Android to 35, kotlin to 2.0.21, lifecycle to 2.8.7
* chore: update snippets to target android-35. Update snippets libraries
* chore: Update minSdk to 23 for the snippets
2025-01-14 08:13:10 -07:00
stanfchristina
55c629717a
fix: stop memory leak in CoordTileProvider ( #1929 )
...
Bitmaps served by this provider cause memory leaks after the map is destroyed. Narrowing the scope to a field allows it to be garbage collected and does not affect the provider/activity's ability to serve and render the custom tiles.
2024-12-18 17:05:04 -07:00
antonsurya
66db0fa2cf
fix: Re-add MarkerDemoActivity in Kotlin sample ( #1916 )
...
fix: Re-add MarkerDemoActivity that was accidentally removed in 4297488454
2024-12-04 15:57:32 -07:00
Dale Hawkins
206cdcf1c3
fix: Exports sample activities so they can be run directly ( #1808 )
...
* fix: Exports all of the sample activities to make them available to run directly.
* fix: wrap before copyright comment formatting character
2024-09-17 15:54:35 -06:00
Enrique López Mañas
ac20c0322f
chore: increased versions ( #1769 )
2024-08-27 10:28:54 -06:00
Enrique López Mañas
be0a71f10c
chore: replace the GMS folder with main ( #1767 )
...
* chore: replace the GMS folder with main
* chore: headers
* feat: change build command
2024-08-26 15:38:26 -06:00
Enrique López Mañas
42f3887bac
feat: tooling modernization ( #1753 )
...
* feat: tooling modernization
* chore: headers
* chore: headers
* feat: tooling modernization
* removed script
2024-08-20 14:33:51 -06:00
Angela Yu
8e47cfbe21
chore: update build.gradle comments for adding an API key ( #1756 )
2024-08-16 12:26:28 -07:00
Angela Yu
710c6ee148
chore: update all instructions to use secrets.properties ( #1755 )
...
* chore: update WearOS readme
* chore: update WearOS AGP version
* chore: remove outdated API key instructions
* chore: update comments in build.gradle
2024-08-16 11:12:20 -07:00
Dale Hawkins
abcc8b52c2
feat: copies some snippets that were in v3 only to gms ( #1715 )
...
* feat: copies some snippets that were in v3 only to gms
chore: the java compatibility version
* fix: updates copyright dates and adds missing copyright
* fix: copyright header for strings.xml
* fix: set Java Version back to 17
* fix: set Java Version back to 17
* fix: set Java Version back to 17
* fix: set Java Version back to 17
* fix: set Java Version back to 17
* feat: creates AdvancedMarkersCollisionActivity to demonstrate marker collision behavior
* chore: not adding jar files in libs directory
* feat: set Java 21 everywhere
---------
Co-authored-by: Enrique López Mañas <eenriquelopez@gmail.com>
2024-07-24 10:56:55 -06:00
Enrique López Mañas
4297488454
feat: added Kotlin MapColorScheme sample ( #1712 )
...
* feat: added Kotlin MapColorScheme sample
* chore: added header in XML file
* feat: added Kotlin MapColorScheme sample
* feat: Java demo
2024-07-22 15:27:22 -06:00
Enrique López Mañas
58cf1c3892
chore: fixed build after the dependabot updates ( #1697 )
...
* chore: fixed build after the dependabot updates
* chore: increased minSdk to 21
* chore: compose updated
* chore: fixed duplicates issue
* chore: fixed duplicates issues
* chore: fixed duplicates issues
2024-07-10 15:11:45 -06:00
dependabot[bot]
a6ec7d111f
chore(deps): bump com.google.maps.android:maps-ktx from 5.0.0 to 5.1.0 in /ApiDemos/kotlin ( #1691 )
...
chore(deps): bump com.google.maps.android:maps-ktx in /ApiDemos/kotlin
Bumps [com.google.maps.android:maps-ktx](https://github.com/googlemaps/android-maps-ktx ) from 5.0.0 to 5.1.0.
- [Release notes](https://github.com/googlemaps/android-maps-ktx/releases )
- [Changelog](https://github.com/googlemaps/android-maps-ktx/blob/main/.releaserc )
- [Commits](https://github.com/googlemaps/android-maps-ktx/compare/v5.0.0...v5.1.0 )
---
updated-dependencies:
- dependency-name: com.google.maps.android:maps-ktx
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-08 13:12:08 +00:00
dependabot[bot]
40ecdf1843
chore(deps): bump androidx.lifecycle:lifecycle-runtime-ktx from 2.8.2 to 2.8.3 in /ApiDemos/kotlin ( #1690 )
...
chore(deps): bump androidx.lifecycle:lifecycle-runtime-ktx
Bumps androidx.lifecycle:lifecycle-runtime-ktx from 2.8.2 to 2.8.3.
---
updated-dependencies:
- dependency-name: androidx.lifecycle:lifecycle-runtime-ktx
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-08 13:10:49 +00:00
dependabot[bot]
71b2e30daa
chore(deps): bump androidx.test.ext:junit from 1.1.5 to 1.2.1 in /ApiDemos/kotlin ( #1677 )
...
chore(deps): bump androidx.test.ext:junit in /ApiDemos/kotlin
Bumps androidx.test.ext:junit from 1.1.5 to 1.2.1.
---
updated-dependencies:
- dependency-name: androidx.test.ext:junit
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-01 13:27:02 +00:00
dependabot[bot]
8f3cdc0975
chore(deps): bump androidx.test.espresso:espresso-core from 3.5.1 to 3.6.1 in /ApiDemos/kotlin ( #1678 )
...
chore(deps): bump androidx.test.espresso:espresso-core
Bumps androidx.test.espresso:espresso-core from 3.5.1 to 3.6.1.
---
updated-dependencies:
- dependency-name: androidx.test.espresso:espresso-core
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-01 13:25:39 +00:00
dependabot[bot]
ecff326444
chore(deps): bump androidx.test.espresso:espresso-core from 3.5.1 to 3.6.1 in /ApiDemos/java ( #1668 )
...
chore(deps): bump androidx.test.espresso:espresso-core in /ApiDemos/java
Bumps androidx.test.espresso:espresso-core from 3.5.1 to 3.6.1.
---
updated-dependencies:
- dependency-name: androidx.test.espresso:espresso-core
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-01 13:24:01 +00:00
dependabot[bot]
52730df53c
chore(deps): bump com.google.android.gms:play-services-maps from 18.2.0 to 19.0.0 in /ApiDemos/java ( #1670 )
...
chore(deps): bump com.google.android.gms:play-services-maps
Bumps com.google.android.gms:play-services-maps from 18.2.0 to 19.0.0.
---
updated-dependencies:
- dependency-name: com.google.android.gms:play-services-maps
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-01 13:23:02 +00:00
dependabot[bot]
d9eb31640d
chore(deps): bump androidx.test.ext:junit from 1.1.5 to 1.2.1 in /ApiDemos/java ( #1669 )
...
chore(deps): bump androidx.test.ext:junit in /ApiDemos/java
Bumps androidx.test.ext:junit from 1.1.5 to 1.2.1.
---
updated-dependencies:
- dependency-name: androidx.test.ext:junit
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-01 13:22:48 +00:00
dependabot[bot]
65fcd8ecf0
chore(deps): bump com.android.tools.build:gradle from 8.4.1 to 8.5.0 in /ApiDemos/java ( #1652 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/java
Bumps com.android.tools.build:gradle from 8.4.1 to 8.5.0.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-17 13:43:27 +00:00
dependabot[bot]
80794a5e49
chore(deps): bump androidx.lifecycle:lifecycle-runtime-ktx from 2.8.1 to 2.8.2 in /ApiDemos/kotlin ( #1646 )
...
chore(deps): bump androidx.lifecycle:lifecycle-runtime-ktx
Bumps androidx.lifecycle:lifecycle-runtime-ktx from 2.8.1 to 2.8.2.
---
updated-dependencies:
- dependency-name: androidx.lifecycle:lifecycle-runtime-ktx
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-17 13:24:42 +00:00
dependabot[bot]
5c742e46ee
chore(deps): bump com.android.tools.build:gradle from 8.4.1 to 8.5.0 in /ApiDemos/kotlin ( #1647 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/kotlin
Bumps com.android.tools.build:gradle from 8.4.1 to 8.5.0.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-17 13:24:31 +00:00
dependabot[bot]
27f3afc8c4
chore(deps): bump androidx.appcompat:appcompat from 1.6.1 to 1.7.0 in /ApiDemos/java ( #1624 )
...
chore(deps): bump androidx.appcompat:appcompat in /ApiDemos/java
Bumps androidx.appcompat:appcompat from 1.6.1 to 1.7.0.
---
updated-dependencies:
- dependency-name: androidx.appcompat:appcompat
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-03 13:22:13 +00:00
dependabot[bot]
ebad1b4324
chore(deps): bump androidx.lifecycle:lifecycle-runtime-ktx from 2.8.0 to 2.8.1 in /ApiDemos/kotlin ( #1623 )
...
chore(deps): bump androidx.lifecycle:lifecycle-runtime-ktx
Bumps androidx.lifecycle:lifecycle-runtime-ktx from 2.8.0 to 2.8.1.
---
updated-dependencies:
- dependency-name: androidx.lifecycle:lifecycle-runtime-ktx
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-03 13:18:28 +00:00
dependabot[bot]
723eae5d48
chore(deps): bump androidx.appcompat:appcompat from 1.6.1 to 1.7.0 in /ApiDemos/kotlin ( #1622 )
...
chore(deps): bump androidx.appcompat:appcompat in /ApiDemos/kotlin
Bumps androidx.appcompat:appcompat from 1.6.1 to 1.7.0.
---
updated-dependencies:
- dependency-name: androidx.appcompat:appcompat
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-03 13:18:17 +00:00
dependabot[bot]
ecb6b8004d
chore(deps): bump kotlin_version from 1.9.24 to 2.0.0 in /ApiDemos/kotlin ( #1614 )
...
chore(deps): bump kotlin_version in /ApiDemos/kotlin
Bumps `kotlin_version` from 1.9.24 to 2.0.0.
Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 1.9.24 to 2.0.0
- [Release notes](https://github.com/JetBrains/kotlin/releases )
- [Changelog](https://github.com/JetBrains/kotlin/blob/v2.0.0/ChangeLog.md )
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.24...v2.0.0 )
Updates `org.jetbrains.kotlin:kotlin-stdlib-jdk7` from 1.9.24 to 2.0.0
- [Release notes](https://github.com/JetBrains/kotlin/releases )
- [Changelog](https://github.com/JetBrains/kotlin/blob/v2.0.0/ChangeLog.md )
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.24...v2.0.0 )
---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin
dependency-type: direct:production
update-type: version-update:semver-major
- dependency-name: org.jetbrains.kotlin:kotlin-stdlib-jdk7
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-27 13:58:14 +00:00
dependabot[bot]
e6a535dcd6
chore(deps): bump com.android.tools.build:gradle from 8.4.0 to 8.4.1 in /ApiDemos/java ( #1615 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/java
Bumps com.android.tools.build:gradle from 8.4.0 to 8.4.1.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-27 13:55:32 +00:00
dependabot[bot]
dc94eb6455
chore(deps): bump com.android.tools.build:gradle from 8.4.0 to 8.4.1 in /ApiDemos/kotlin ( #1610 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/kotlin
Bumps com.android.tools.build:gradle from 8.4.0 to 8.4.1.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-27 13:50:29 +00:00
dependabot[bot]
60a32c61d2
chore(deps): bump androidx.lifecycle:lifecycle-runtime-ktx from 2.6.1 to 2.8.0 in /ApiDemos/kotlin ( #1594 )
...
chore(deps): bump androidx.lifecycle:lifecycle-runtime-ktx
Bumps androidx.lifecycle:lifecycle-runtime-ktx from 2.6.1 to 2.8.0.
---
updated-dependencies:
- dependency-name: androidx.lifecycle:lifecycle-runtime-ktx
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-20 14:03:19 +00:00
Enrique López Mañas
273126a7c7
chore: improved git hook to add Google API Keys ( #1576 )
...
* chore: improved git hook to add Google API Keys
* chore: updated Gradle
2024-05-17 05:10:18 -06:00
dependabot[bot]
6a7bd85b5d
chore(deps): bump kotlin_version from 1.9.23 to 1.9.24 in /ApiDemos/kotlin ( #1585 )
...
chore(deps): bump kotlin_version in /ApiDemos/kotlin
Bumps `kotlin_version` from 1.9.23 to 1.9.24.
Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 1.9.23 to 1.9.24
- [Release notes](https://github.com/JetBrains/kotlin/releases )
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md )
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.23...v1.9.24 )
Updates `org.jetbrains.kotlin:kotlin-stdlib-jdk7` from 1.9.23 to 1.9.24
- [Release notes](https://github.com/JetBrains/kotlin/releases )
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md )
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.23...v1.9.24 )
---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin:kotlin-stdlib-jdk7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-13 13:13:28 +00:00
dependabot[bot]
b7bdda8703
chore(deps): bump com.android.tools.build:gradle from 8.3.2 to 8.4.0 in /ApiDemos/kotlin ( #1573 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/kotlin
Bumps com.android.tools.build:gradle from 8.3.2 to 8.4.0.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-06 13:53:18 +00:00
dependabot[bot]
52d7347d97
chore(deps): bump com.android.tools.build:gradle from 8.3.2 to 8.4.0 in /ApiDemos/java ( #1565 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/java
Bumps com.android.tools.build:gradle from 8.3.2 to 8.4.0.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-06 13:08:17 +00:00
Angela Yu
fa63927d15
chore: add region tags to 6 samples ( #1552 )
2024-04-25 11:10:15 -07:00
Angela Yu
cf74be5bc2
chore: add region tag to basic map demo and upgrade gradle ( #1551 )
...
* chore: add region tag to basic map demo
* chore: update gradle verison
2024-04-24 17:23:01 -07:00
dependabot[bot]
725911ec17
chore(deps): bump com.android.tools.build:gradle from 8.3.1 to 8.3.2 in /ApiDemos/java ( #1542 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/java
Bumps com.android.tools.build:gradle from 8.3.1 to 8.3.2.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-15 13:57:40 +00:00
dependabot[bot]
d42837df07
chore(deps): bump com.android.tools.build:gradle from 8.3.1 to 8.3.2 in /ApiDemos/kotlin ( #1539 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/kotlin
Bumps com.android.tools.build:gradle from 8.3.1 to 8.3.2.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-15 13:50:38 +00:00
dependabot[bot]
52c6b5b729
chore(deps): bump com.android.tools.build:gradle from 8.3.0 to 8.3.1 in /ApiDemos/java ( #1522 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/java
Bumps com.android.tools.build:gradle from 8.3.0 to 8.3.1.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-25 13:27:20 +00:00
dependabot[bot]
a63ef80e18
chore(deps): bump com.android.tools.build:gradle from 8.3.0 to 8.3.1 in /ApiDemos/kotlin ( #1518 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/kotlin
Bumps com.android.tools.build:gradle from 8.3.0 to 8.3.1.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-25 13:02:03 +00:00
dependabot[bot]
84b20d487e
chore(deps): bump kotlin_version from 1.9.0 to 1.9.23 in /ApiDemos/kotlin ( #1512 )
...
chore(deps): bump kotlin_version in /ApiDemos/kotlin
Bumps `kotlin_version` from 1.9.0 to 1.9.23.
Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 1.9.0 to 1.9.23
- [Release notes](https://github.com/JetBrains/kotlin/releases )
- [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.23/ChangeLog.md )
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.0...v1.9.23 )
Updates `org.jetbrains.kotlin:kotlin-stdlib-jdk7` from 1.9.0 to 1.9.23
- [Release notes](https://github.com/JetBrains/kotlin/releases )
- [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.23/ChangeLog.md )
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.0...v1.9.23 )
---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin:kotlin-stdlib-jdk7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-11 13:33:23 +00:00
dependabot[bot]
e1fbc10921
chore(deps): bump com.android.tools.build:gradle from 8.1.4 to 8.3.0 in /ApiDemos/java ( #1501 )
...
chore(deps): bump com.android.tools.build:gradle in /ApiDemos/java
Bumps com.android.tools.build:gradle from 8.1.4 to 8.3.0.
---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-04 13:55:46 +00:00