From 7e03028707aa9a6464e9fec37f1038e52668ad69 Mon Sep 17 00:00:00 2001 From: lmp Date: Tue, 15 Oct 2024 19:32:07 +0200 Subject: [PATCH] fix --- cli/remedy.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/remedy.v b/cli/remedy.v index a0bd9d1..fd7922a 100644 --- a/cli/remedy.v +++ b/cli/remedy.v @@ -13,7 +13,7 @@ pub fn notify_known_errors(opt Options) { symptoms_apk := "\taapt E 10-15 18:51:31 89712 89712] Entry offset at index 1335 points outside the Type's boundaries \t.../res/values/styles.xml:4: error: Error retrieving parent for item: No resource found that matches the given name 'android:Theme.Holo.Light.DarkActionBar'." symptoms := if opt.package_format == 'aab' { symptoms_aab } else { symptoms_apk } - util.vab_notice('Using build-tools < 35.0.0 with Android API level >= 33 is know to cause package build errors', + util.vab_notice('Using build-tools < 35.0.0 with Android API level >= 33 is known to cause package build errors', details: 'Symptoms output:\n${symptoms}\nIt can usually be fixed by installing and using build-tools >= 35.0.0\nTry:\n\tvab install "build-tools;35.0.0"' ) }