Search:

Type: Posts; User: Norm

Search: Search took 0.12 seconds.

  1. Re: can not find symbol error in java (android studio)

    That looks like it should be part of a catch statement:

    try {
    ....
    }catch (UnavailableArcoreNotInstalledException) || (UnavailableUserDeclinedInstallationException) {
    ...
    }...
  2. Re: can not find symbol error in java (android studio)

    That message says that the compiler can not find where the symbol mentioned in the message has been defined in scope where it is being used.
    Roughly, in scope means within the same pair of {}s

    It...
Results 1 to 2 of 2