Skip to content

Commit 1e28a1f

Browse files
minor
1 parent c867708 commit 1e28a1f

8 files changed

Lines changed: 13 additions & 10 deletions

File tree

examples/android/RunAnywhereAI/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ kotlin.caching.enabled=true
4747
# ./gradlew -Prunanywhere.testLocal=true assembleDebug # Use local builds
4848
# ./gradlew -Prunanywhere.rebuildCommons=true assembleDebug # Force C++ rebuild
4949
# =============================================================================
50-
runanywhere.testLocal=true
50+
runanywhere.testLocal=false
5151
runanywhere.rebuildCommons=false
5252
kotlin.mpp.applyDefaultHierarchyTemplate=false

examples/react-native/RunAnywhereAI/android/app/build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,14 @@ android {
171171
"**/libfbjni.so",
172172
"**/libfolly_runtime.so",
173173
"**/libreactnative.so",
174-
"**/libNitroModules.so", // Nitro modules shared by @runanywhere/onnx and react-native-nitro-modules
175-
"**/librac_backend_onnx.so", // ONNX backend duplicated via rag + onnx modules
174+
"**/libNitroModules.so",
175+
"**/librac_backend_onnx.so",
176176
"**/librac_commons.so",
177177
"**/libomp.so",
178-
"**/libcdsprpc.so" // Qualcomm FastRPC (shared by Genie and device)
178+
"**/libcdsprpc.so",
179+
"**/libGenie.so",
180+
"**/libQnnHtpV81Skel.so",
181+
"**/libQnnHtpV81Stub.so"
179182
]
180183
}
181184

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ org.gradle.configureondemand=true
1010
kotlin.code.style=official
1111
# KMP configuration
1212
kotlin.mpp.applyDefaultHierarchyTemplate=false
13-
runanywhere.testLocal=true
13+
runanywhere.testLocal=false

sdk/runanywhere-flutter/packages/runanywhere/android/binary_config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
ext {
1212
// Set this to true for local development/testing
1313
// Set to false for production builds (downloads from GitHub releases)
14-
testLocal = true
14+
testLocal = false
1515

1616
// =============================================================================
1717
// Version Configuration (MUST match Swift Package.swift and Kotlin build.gradle.kts)

sdk/runanywhere-flutter/packages/runanywhere_genie/android/binary_config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
ext {
1212
// Set this to true for local development/testing
1313
// Set to false for production builds (downloads from GitHub releases)
14-
testLocal = true
14+
testLocal = false
1515

1616
// =============================================================================
1717
// Version Configuration (MUST match Swift Package.swift and Kotlin build.gradle.kts)

sdk/runanywhere-flutter/packages/runanywhere_llamacpp/android/binary_config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
ext {
1212
// Set this to true for local development/testing
1313
// Set to false for production builds (downloads from GitHub releases)
14-
testLocal = true
14+
testLocal = false
1515

1616
// =============================================================================
1717
// Version Configuration (MUST match Swift Package.swift and Kotlin build.gradle.kts)

sdk/runanywhere-flutter/packages/runanywhere_onnx/android/binary_config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
ext {
1212
// Set this to true for local development/testing
1313
// Set to false for production builds (downloads from GitHub releases)
14-
testLocal = true
14+
testLocal = false
1515

1616
// =============================================================================
1717
// Version Configuration (MUST match Swift Package.swift and Kotlin build.gradle.kts)

sdk/runanywhere-kotlin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ kotlin.mpp.applyDefaultHierarchyTemplate=false
3636
# ./gradlew setupLocalDevelopment # First-time setup (downloads + builds + copies)
3737
# ./gradlew rebuildCommons # Rebuild C++ after changes
3838
# =============================================================================
39-
runanywhere.testLocal=true
39+
runanywhere.testLocal=false
4040

4141
# Force rebuild of runanywhere-commons C++ code (default: false)
4242
# Set to true when you've made changes to C++ source files

0 commit comments

Comments
 (0)