update to latest android packages + fix unused func warning in vst3

This commit is contained in:
Stefano D'Angelo 2025-02-01 09:11:33 +01:00
parent 2cefabb82f
commit 691e0d633d
2 changed files with 4 additions and 2 deletions

View File

@ -1065,6 +1065,8 @@ static Steinberg_tresult pluginProcess(void* thisInterface, struct Steinberg_Vst
continue;
q->lpVtbl->addPoint(q, data->numSamples - 1, parameterUnmap(parameterOutData + i, v), &index);
}
#else
(void)plugin_get_parameter;
#endif
// TBD: latency + IComponentHandler::restartComponent (kLatencyChanged), see https://steinbergmedia.github.io/vst3_dev_portal/pages/Technical+Documentation/Workflow+Diagrams/Get+Latency+Call+Sequence.html

View File

@ -34,8 +34,8 @@ ifeq ($(TEMPLATE), android)
ANDROID_VERSION := 35
ANDROIDX_CORE_VERSION := 1.15.0
ANDROIDX_LIFECYCLE_COMMON_VERSION := 2.8.7
ANDROIDX_VERSIONEDPARCELABLE_VERSION := 1.2.0
KOTLIN_STDLIB_VERSION := 2.1.0
ANDROIDX_VERSIONEDPARCELABLE_VERSION := 1.2.1
KOTLIN_STDLIB_VERSION := 2.1.10
KOTLINX_COROUTINES_CORE_VERSION := 1.10.1
KOTLINX_COROUTINES_CORE_JVM_VERSION := 1.10.1
endif