not sure what the issue is with b4a's sqrt method, but it you want java's sqrt() from java.lang.Math, you can do what's in the attached. i did it with b4j and the bigdecimal library because it's easier to throw together. should build easily enough with b4a
i don't know what a bigdecimal is, but it wasn't too difficult to use the library in conjunction with java's sqrt() method, as if it were included in the library (which is, judging by looking at the code, based on various facets of the java.lang.Match class. you can pass a normaldecimal to the call or - as i did - pass a bigdecimal's value (a bigdecimal is an object).
b4j happens to have a PI constant, so i used it for testing. the sqrt returned was 1.7724538509055159 (which looks like something shown in a previous answer).