From db3ff2e9f41ebae5d1f36f89a09d730b3a44c169 Mon Sep 17 00:00:00 2001 From: Adrian Niculescu <15037449+adrian-niculescu@users.noreply.github.com> Date: Sat, 13 Jun 2026 22:44:28 +0300 Subject: [PATCH] fix: point android-dts-generator submodule at main The android-dts-generator repo renamed its default branch from master to main and deleted master, so the submodule's `branch = master` no longer resolves and `git submodule update --remote` fails to find it. Point it at the branch that actually exists. --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 83cb4c40f..7913129bb 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,4 +7,4 @@ [submodule "test-app/build-tools/android-dts-generator"] path = test-app/build-tools/android-dts-generator url = https://github.com/NativeScript/android-dts-generator.git - branch = master + branch = main