Skip to content

Commit

Permalink
make JAR_PATH abs in intent
Browse files Browse the repository at this point in the history
  • Loading branch information
abe-winter committed Jul 2, 2024
1 parent 67d36de commit 88dcd8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/module-plugin/src/main/resources/mod-in-process.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ trap removeTempFile EXIT
intentURI="intent:#Intent;action=com.viam.rdk.fgservice.START_MODULE"
intentURI="$intentURI;S.secret=$_VIAM_FG_SECRET"
intentURI="$intentURI;S.proc_file=$proc_file"
intentURI="$intentURI;S.java_class_path=$JAR_PATH"
intentURI="$intentURI;S.java_class_path=$(realpath $JAR_PATH)"
intentURI="$intentURI;S.java_library_path=$LIBRARY_PATH"
intentURI="$intentURI;S.java_entry_point_class=__MAIN_ENTRY_CLASS__"
saveIFS="$IFS"
Expand Down

0 comments on commit 88dcd8f

Please sign in to comment.