Skip to content

Commit 96e3569

Browse files
committed
fix: remove stale runanywhere-core-rag module references from Android app
RAG was moved into the core SDK but the Android example app still referenced the deleted module, breaking the build.
1 parent b83de51 commit 96e3569

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

examples/android/RunAnywhereAI/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ dependencies {
219219
// Pick the backends you need:
220220
implementation(project(":runanywhere-core-llamacpp")) // ~45MB - LLM text generation
221221
implementation(project(":runanywhere-core-onnx")) // ~30MB - STT, TTS, VAD
222-
implementation(project(":runanywhere-core-rag")) // RAG pipeline JNI bindings
222+
// RAG pipeline is now part of the core SDK (not a separate module)
223223

224224
// AndroidX Core & Lifecycle
225225
implementation(libs.androidx.core.ktx)

examples/android/RunAnywhereAI/settings.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,5 @@ include(":runanywhere-core-onnx")
5353
project(":runanywhere-core-onnx").projectDir =
5454
file("../../../sdk/runanywhere-kotlin/modules/runanywhere-core-onnx")
5555

56-
// RAG module - Retrieval-Augmented Generation adapter
57-
include(":runanywhere-core-rag")
58-
project(":runanywhere-core-rag").projectDir =
59-
file("../../../sdk/runanywhere-kotlin/modules/runanywhere-core-rag")
56+
// RAG pipeline is now part of the core SDK (not a separate module).
57+
// Registration is handled by ragCreatePipeline(). See: RunAnywhere+RAG.jvmAndroid.kt

0 commit comments

Comments
 (0)