From 8240d736735e82ae0700e8d4968de09aacf8a41f Mon Sep 17 00:00:00 2001 From: Kiryl Dzehtsiarenka Date: Mon, 11 May 2020 13:21:49 +0300 Subject: [PATCH 01/17] Update version to 29 --- Examples/build.gradle | 6 +++--- gradle/versions.gradle | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Examples/build.gradle b/Examples/build.gradle index b599b3e..a7b3c77 100644 --- a/Examples/build.gradle +++ b/Examples/build.gradle @@ -9,7 +9,7 @@ apply from: "../gradle/versions.gradle" apply from: "../gradle/ktlint.gradle" android { - compileSdkVersion 28 + compileSdkVersion compile_sdk_version compileOptions { sourceCompatibility 1.8 @@ -18,8 +18,8 @@ android { defaultConfig { applicationId "com.mapbox.vision.examples" - minSdkVersion 23 - targetSdkVersion 28 + minSdkVersion min_sdk_version + targetSdkVersion target_sdk_version versionCode 1 versionName "1.0" diff --git a/gradle/versions.gradle b/gradle/versions.gradle index 923a45e..5e20a8a 100644 --- a/gradle/versions.gradle +++ b/gradle/versions.gradle @@ -1,11 +1,11 @@ ext { - gradle_plugin ='3.6.1' - kotlin_version = '1.3.61' + gradle_plugin ='3.6.3' + kotlin_version = '1.3.72' min_sdk_version = 23 - target_sdk_version = 28 - compile_sdk_version = 28 - build_tools_version = '28.0.3' + target_sdk_version = 29 + compile_sdk_version = 29 + build_tools_version = '29.0.2' android_x_appcompat = '1.1.0' From 801a6064f1dbb9150ed7d3bd903ab3ffbcb09cc2 Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Tue, 23 Jun 2020 16:45:10 +0300 Subject: [PATCH 02/17] Updated with 0.13.0 --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66496c4..ff0c9cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## v0.13.0 + +### Vision +- Added video recording for custom `VideoSource` implementation +- Updated Vision, Vision AR and Vision Safety to Android SDK 10 +- Added all required permissions to Vision SDK manifest. +- Added selection of default 960x540 camera resolution or closest to 16x9 in Camera2VideoSourceImpl +- Added param to Camera2VideoSourceImpl constructor to enable\disable autofocus +- Added support of reverse landscape orientation +- Updated SNPE to 1.39.0 +- Removed deprecated code for 0.12.0 + +### AR +- Replaced `VisionView` rendering with common rendering engine for all platforms. +- Replaced `VisionArView` rendering with common rendering engine for all platforms. + ## v0.12.0 ### Device support From 6c3080dcc97aebb522859e6d7c7a695475e85326 Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Tue, 23 Jun 2020 19:04:24 +0300 Subject: [PATCH 03/17] Add fixes by review --- CHANGELOG.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff0c9cc..dc2b516 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,16 +5,16 @@ ### Vision - Added video recording for custom `VideoSource` implementation - Updated Vision, Vision AR and Vision Safety to Android SDK 10 -- Added all required permissions to Vision SDK manifest. -- Added selection of default 960x540 camera resolution or closest to 16x9 in Camera2VideoSourceImpl +- Added all required permissions to Vision SDK manifest +- Changed default resolution of Camera2VideoSourceImpl to 960*540 - Added param to Camera2VideoSourceImpl constructor to enable\disable autofocus - Added support of reverse landscape orientation -- Updated SNPE to 1.39.0 - Removed deprecated code for 0.12.0 - -### AR -- Replaced `VisionView` rendering with common rendering engine for all platforms. -- Replaced `VisionArView` rendering with common rendering engine for all platforms. +- Replaced `VisionView` rendering with common rendering engine for all platforms +- Replaced `VisionArView` rendering with common rendering engine for all platforms +- Integrated LaneDetection mode for VisionView +- Deprecated `VisionArEventsListener.onArCameraUpdated` method +- Extended `Camera` class returned by `VisionEventsListener.onCameraUpdated` ## v0.12.0 From 306951085f44169be03a231013f246675222174b Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Wed, 24 Jun 2020 13:58:04 +0300 Subject: [PATCH 04/17] Describe all removed deprecated methods for 0.12 --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc2b516..d89d550 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,13 @@ - Changed default resolution of Camera2VideoSourceImpl to 960*540 - Added param to Camera2VideoSourceImpl constructor to enable\disable autofocus - Added support of reverse landscape orientation -- Removed deprecated code for 0.12.0 +- Removed deprecated code for 0.12.0: + - `VisionManager.setModelPerformanceConfig` + - `VisionReplayManager.setModelPerformanceConfig` + - `SystemInfoUtils.getSnpeSupportedBoard` + - `SystemInfoUtils.getSystemProperty` + - `enum class SupportedSnapdragonBoards` + - `class ModelPerformanceConfig` - Replaced `VisionView` rendering with common rendering engine for all platforms - Replaced `VisionArView` rendering with common rendering engine for all platforms - Integrated LaneDetection mode for VisionView From 4b36bd69e0d69829b90484d75a1007ccaff9d4fb Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Wed, 24 Jun 2020 15:00:14 +0300 Subject: [PATCH 05/17] Rephraze description regarding new rendering engine --- CHANGELOG.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d89d550..421acb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ - Updated Vision, Vision AR and Vision Safety to Android SDK 10 - Added all required permissions to Vision SDK manifest - Changed default resolution of Camera2VideoSourceImpl to 960*540 -- Added param to Camera2VideoSourceImpl constructor to enable\disable autofocus +- Added optional parameter to Camera2VideoSourceImpl constructor to enable\disable autofocus - Added support of reverse landscape orientation - Removed deprecated code for 0.12.0: - `VisionManager.setModelPerformanceConfig` @@ -16,8 +16,7 @@ - `SystemInfoUtils.getSystemProperty` - `enum class SupportedSnapdragonBoards` - `class ModelPerformanceConfig` -- Replaced `VisionView` rendering with common rendering engine for all platforms -- Replaced `VisionArView` rendering with common rendering engine for all platforms +- Integrated new rendering engine for VisionView and VisionArView with better performance - Integrated LaneDetection mode for VisionView - Deprecated `VisionArEventsListener.onArCameraUpdated` method - Extended `Camera` class returned by `VisionEventsListener.onCameraUpdated` From 40d41c64c8b13d33b7f3757928c61c27304912ac Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Wed, 24 Jun 2020 15:12:00 +0300 Subject: [PATCH 06/17] Add more changes related to core --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 421acb7..bc37639 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,10 @@ - Integrated LaneDetection mode for VisionView - Deprecated `VisionArEventsListener.onArCameraUpdated` method - Extended `Camera` class returned by `VisionEventsListener.onCameraUpdated` +- Added Okinawa to Japan sign classifier +- Improved segmentation rendering +- Improved adjacent lanes detection +- Added `VisionManager.setCameraHeight` ## v0.12.0 From 062aa4c5e4f9224884faeda23156bb380940ce5a Mon Sep 17 00:00:00 2001 From: Kiryl Dzehtsiarenka Date: Wed, 24 Jun 2020 15:51:15 +0300 Subject: [PATCH 07/17] Update code for 0.13.0 --- .../mapbox/vision/examples/BaseActivity.java | 52 ++++++++++--------- Examples/src/main/res/values/strings.xml | 2 + gradle/versions.gradle | 2 +- 3 files changed, 31 insertions(+), 25 deletions(-) diff --git a/Examples/src/main/java/com/mapbox/vision/examples/BaseActivity.java b/Examples/src/main/java/com/mapbox/vision/examples/BaseActivity.java index b68d9fb..76648d2 100644 --- a/Examples/src/main/java/com/mapbox/vision/examples/BaseActivity.java +++ b/Examples/src/main/java/com/mapbox/vision/examples/BaseActivity.java @@ -4,16 +4,14 @@ import android.content.pm.PackageManager; import android.os.Build; import android.os.Bundle; -import android.text.Html; -import android.text.Spanned; -import android.widget.Toast; - +import android.text.method.LinkMovementMethod; +import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import androidx.core.content.ContextCompat; - +import androidx.core.text.HtmlCompat; import com.mapbox.vision.mobile.core.utils.SystemInfoUtils; -import com.mapbox.vision.mobile.core.utils.snapdragon.SupportedSnapdragonBoards; import com.mapbox.vision.utils.VisionLogger; public abstract class BaseActivity extends AppCompatActivity { @@ -29,17 +27,28 @@ public abstract class BaseActivity extends AppCompatActivity { protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); - String board = SystemInfoUtils.INSTANCE.getSnpeSupportedBoard(); - if (!SupportedSnapdragonBoards.isBoardSupported(board)) { - Spanned text = - Html.fromHtml("The device is not supported, you need Snapdragon-powered device with OpenCL support, more details at https://www.mapbox.com/android-docs/vision/overview/"); - Toast.makeText(this, text, Toast.LENGTH_LONG).show(); + if (!SystemInfoUtils.INSTANCE.isVisionSupported()) { + final TextView textView = new TextView(this); + final int padding = (int) dpToPx(20f); + textView.setPadding(padding, padding, padding, padding); + textView.setMovementMethod(LinkMovementMethod.getInstance()); + textView.setClickable(true); + textView.setText( + HtmlCompat.fromHtml( + getString(R.string.vision_not_supported_message), + HtmlCompat.FROM_HTML_MODE_LEGACY + ) + ); + new AlertDialog.Builder(this) + .setTitle(R.string.vision_not_supported_title) + .setView(textView) + .setCancelable(false) + .show(); + VisionLogger.Companion.e( - "NotSupportedBoard", - "Current board is " + board + ", Supported Boards: [ " + getSupportedBoardNames() + " ]; System Info: [ " + SystemInfoUtils.INSTANCE.obtainSystemInfo() + " ]" + "BoardNotSupported", + "System Info: [" + SystemInfoUtils.INSTANCE.obtainSystemInfo() + "]" ); - finish(); - return; } initViews(); @@ -53,15 +62,6 @@ protected void onCreate(Bundle savedInstanceState) { } } - private String getSupportedBoardNames() { - StringBuilder sb = new StringBuilder(); - for (SupportedSnapdragonBoards board : SupportedSnapdragonBoards.values()) { - sb.append(board.name()); - } - - return sb.toString(); - } - protected boolean allPermissionsGranted() { for (String permission : getRequiredPermissions()) { if (ContextCompat.checkSelfPermission(this, permission) != PackageManager.PERMISSION_GRANTED) { @@ -94,6 +94,10 @@ private String[] getRequiredPermissions() { return permissions; } + private float dpToPx(final float dp) { + return dp * getApplicationContext().getResources().getDisplayMetrics().density; + } + @Override public void onRequestPermissionsResult(int requestCode, @NonNull String permissions[], @NonNull int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); diff --git a/Examples/src/main/res/values/strings.xml b/Examples/src/main/res/values/strings.xml index ab89add..b8a1c8d 100644 --- a/Examples/src/main/res/values/strings.xml +++ b/Examples/src/main/res/values/strings.xml @@ -8,4 +8,6 @@ POI Example Camera calibration: %1$d %% Usb Camera Example + Device is not supported + Vision SDK does not support this device yet, check more details at <a href=\"https://docs.mapbox.com/android/vision/overview/#requirements\">docs.mapbox.com</a> diff --git a/gradle/versions.gradle b/gradle/versions.gradle index 5e20a8a..57c2cc5 100644 --- a/gradle/versions.gradle +++ b/gradle/versions.gradle @@ -9,7 +9,7 @@ ext { android_x_appcompat = '1.1.0' - vision = '0.12.0' + vision = '0.13.0' mapbox_core = '1.4.1' mapbox_navigation = '0.42.5' From 432531217b5d6c5d91241ea5759db8ec9a204dca Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Wed, 24 Jun 2020 16:02:58 +0300 Subject: [PATCH 08/17] Fix description --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc37639..ceaaca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ - Integrated LaneDetection mode for VisionView - Deprecated `VisionArEventsListener.onArCameraUpdated` method - Extended `Camera` class returned by `VisionEventsListener.onCameraUpdated` -- Added Okinawa to Japan sign classifier +- Added Okinawa to Japan country detector - Improved segmentation rendering - Improved adjacent lanes detection - Added `VisionManager.setCameraHeight` From 711f63f7921f5d1055403c14deb1dac6f4e17da7 Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Wed, 24 Jun 2020 16:32:33 +0300 Subject: [PATCH 09/17] Exclude not important change regarding segmentation improvement --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ceaaca5..9c0f55a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,7 +21,6 @@ - Deprecated `VisionArEventsListener.onArCameraUpdated` method - Extended `Camera` class returned by `VisionEventsListener.onCameraUpdated` - Added Okinawa to Japan country detector -- Improved segmentation rendering - Improved adjacent lanes detection - Added `VisionManager.setCameraHeight` From d4ae1dfcfead838203c79d090482b02c5330b5ab Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Tue, 30 Jun 2020 13:02:46 +0300 Subject: [PATCH 10/17] Modify log in accordance with common for all platforms --- CHANGELOG.md | 42 +++++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c0f55a..e366a94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,26 +3,30 @@ ## v0.13.0 ### Vision -- Added video recording for custom `VideoSource` implementation -- Updated Vision, Vision AR and Vision Safety to Android SDK 10 -- Added all required permissions to Vision SDK manifest -- Changed default resolution of Camera2VideoSourceImpl to 960*540 -- Added optional parameter to Camera2VideoSourceImpl constructor to enable\disable autofocus -- Added support of reverse landscape orientation -- Removed deprecated code for 0.12.0: - - `VisionManager.setModelPerformanceConfig` - - `VisionReplayManager.setModelPerformanceConfig` - - `SystemInfoUtils.getSnpeSupportedBoard` - - `SystemInfoUtils.getSystemProperty` - - `enum class SupportedSnapdragonBoards` - - `class ModelPerformanceConfig` +- Add video recording for custom `VideoSource` implementation +- Update Vision, Vision AR and Vision Safety to Android SDK 10 +- Add all required permissions to Vision SDK manifest +- Change default resolution of Camera2VideoSourceImpl to 960*540 +- Add optional parameter to Camera2VideoSourceImpl constructor to enable\disable autofocus +- Add support of reverse landscape orientation - Integrated new rendering engine for VisionView and VisionArView with better performance -- Integrated LaneDetection mode for VisionView -- Deprecated `VisionArEventsListener.onArCameraUpdated` method -- Extended `Camera` class returned by `VisionEventsListener.onCameraUpdated` -- Added Okinawa to Japan country detector -- Improved adjacent lanes detection -- Added `VisionManager.setCameraHeight` +- Add `VisionManager.setCameraHeight` +- Deprecate `ARCamera` class +- Add `aspectRatio`, `roll`, `pitch`, `yaw`, `height` properties to `Camera` +- Improve lane detection #2671 #2567 +- Stop sending some inaccurate events until the camera is calibrated +- Introduce automatic camera recalibration +- Expand Japan region to include Okinawa +- Fix bug with speed estimation when a vehicle is stopped +- Fix bug that prevented new China users authorization +- Remove deprecated code for 0.12.0: + - `VisionManager.setModelPerformanceConfig` + - `VisionReplayManager.setModelPerformanceConfig` + - `SystemInfoUtils.getSnpeSupportedBoard` + - `SystemInfoUtils.getSystemProperty` + - `enum class SupportedSnapdragonBoards` + - `class ModelPerformanceConfig` + ## v0.12.0 From 0407d05cfa5513a1b66ee9456d0f2326c22e80bc Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Tue, 30 Jun 2020 13:06:50 +0300 Subject: [PATCH 11/17] Fix descriptions --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e366a94..037d4bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ - Add `VisionManager.setCameraHeight` - Deprecate `ARCamera` class - Add `aspectRatio`, `roll`, `pitch`, `yaw`, `height` properties to `Camera` -- Improve lane detection #2671 #2567 +- Improve lane detection - Stop sending some inaccurate events until the camera is calibrated - Introduce automatic camera recalibration - Expand Japan region to include Okinawa @@ -27,7 +27,6 @@ - `enum class SupportedSnapdragonBoards` - `class ModelPerformanceConfig` - ## v0.12.0 ### Device support From 4e8830b3d097dc7ea460ffddb39100d1c6a825c8 Mon Sep 17 00:00:00 2001 From: Yuri Date: Tue, 30 Jun 2020 13:10:53 +0300 Subject: [PATCH 12/17] Update CHANGELOG.md Co-authored-by: Kiryl Dzehtsiarenka --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 037d4bd..0cf836e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ - Stop sending some inaccurate events until the camera is calibrated - Introduce automatic camera recalibration - Expand Japan region to include Okinawa -- Fix bug with speed estimation when a vehicle is stopped +- Fix bug with speed estimation when a vehicle has stopped - Fix bug that prevented new China users authorization - Remove deprecated code for 0.12.0: - `VisionManager.setModelPerformanceConfig` From aa65db2973c75ee4a7d289b17d1a818671b6a936 Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Tue, 30 Jun 2020 17:52:25 +0300 Subject: [PATCH 13/17] Revert "Update CHANGELOG.md" This reverts commit 4e8830b3d097dc7ea460ffddb39100d1c6a825c8. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cf836e..037d4bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ - Stop sending some inaccurate events until the camera is calibrated - Introduce automatic camera recalibration - Expand Japan region to include Okinawa -- Fix bug with speed estimation when a vehicle has stopped +- Fix bug with speed estimation when a vehicle is stopped - Fix bug that prevented new China users authorization - Remove deprecated code for 0.12.0: - `VisionManager.setModelPerformanceConfig` From 43de25224f49c620412e7a1a0d54fe3d3c7e8ad1 Mon Sep 17 00:00:00 2001 From: Yury Bychyk Date: Wed, 1 Jul 2020 13:03:59 +0300 Subject: [PATCH 14/17] Move ARCamera changes to AR section --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 037d4bd..981936c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,6 @@ - Add support of reverse landscape orientation - Integrated new rendering engine for VisionView and VisionArView with better performance - Add `VisionManager.setCameraHeight` -- Deprecate `ARCamera` class - Add `aspectRatio`, `roll`, `pitch`, `yaw`, `height` properties to `Camera` - Improve lane detection - Stop sending some inaccurate events until the camera is calibrated @@ -27,6 +26,10 @@ - `enum class SupportedSnapdragonBoards` - `class ModelPerformanceConfig` +### AR + +- Deprecate `ARCamera` class in favor of utilization of `Camera` class + ## v0.12.0 ### Device support From 1a5a9cb7e2a8c5baf0dfb76a4ee0c825eef56dc0 Mon Sep 17 00:00:00 2001 From: Dmitry Yunitsky Date: Tue, 3 Aug 2021 17:06:50 +0300 Subject: [PATCH 15/17] Update Mapbox maven repo settings. --- build.gradle | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index d480346..8407785 100644 --- a/build.gradle +++ b/build.gradle @@ -18,18 +18,18 @@ allprojects { google() jcenter() - maven { url "https://mapbox.bintray.com/mapbox" } - maven { - credentials { - username mapboxMavenUser - password mapboxMavenToken - } + url 'https://api.mapbox.com/downloads/v2/releases/maven' authentication { basic(BasicAuthentication) } - - url 'https://api.mapbox.com/downloads/v1/vision/android/maven' + credentials { + // Do not change the username below. + // This should always be `mapbox` (not your username). + username = 'mapbox' + // Use the secret token you stored in gradle.properties as the password + password = project.properties['MAPBOX_DOWNLOADS_TOKEN'] ?: System.getenv("MAPBOX_DOWNLOADS_TOKEN") ?: "" + } } maven { url 'http://raw.github.com/saki4510t/libcommon/master/repository/' } From 4403d4211bd812b2722429f4f5bfeceac3bbfb87 Mon Sep 17 00:00:00 2001 From: Thibaud Lopez Schneider Date: Mon, 12 Feb 2024 14:54:50 -0800 Subject: [PATCH 16/17] Create dependabot.yml Enable Dependabot version updates --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0d08e26 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "github-actions" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From 2415ab947e008ea53a280e927caf5b238a41431e Mon Sep 17 00:00:00 2001 From: "mapbox-mapbox-universe-portal[bot]" <169838751+mapbox-mapbox-universe-portal[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 15:48:03 -0700 Subject: [PATCH 17/17] [AutoCodeowners] Add CODEOWNERS file (#289) * Add CODEOWNERS file * Update CODEOWNERS --------- Co-authored-by: AutoCodeowners Co-authored-by: Billy Bryant <3013565+billyjbryant@users.noreply.github.com> --- CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..91e5620 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @mapbox/vision-android