<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 01/09/2015 09:56 AM, Harri Pasanen
      wrote:<br>
    </div>
    <blockquote cite="mid:54AF97C7.20606@mpaja.com" type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <meta name="qrichtext" content="1">
      <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px;
        margin-right:0px; -qt-block-indent:0; text-indent:0px;"><!--StartFragment--><span
          style=" color:#000000;">I'm playing with some Java code and
          hit a very elementary error:<br>
          <br>
        </span></p>
      <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px;
        margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span
          style=" color:#000000;">JavaTalker.java:4: error: cannot find
          symbol</span></p>
      <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px;
        margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span
          style=" color:#000000;"> [javac] import
          org.qtproject.qt5.android;</span></p>
      <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px;
        margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span
          style=" color:#000000;"> [javac] ^</span></p>
      <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px;
        margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span
          style=" color:#000000;"> [javac] symbol: class android</span></p>
      <p style="-qt-paragraph-type:empty; margin-top:0px;
        margin-bottom:0px; margin-left:0px; margin-right:0px;
        -qt-block-indent:0; text-indent:0px; color:#000000;"><br>
      </p>
      <p style="-qt-paragraph-type:empty; margin-top:0px;
        margin-bottom:0px; margin-left:0px; margin-right:0px;
        -qt-block-indent:0; text-indent:0px; color:#000000;"><br>
        So something in my project config is off, the classpath seems
        wrong.<br>
      </p>
      <p style="-qt-paragraph-type:empty; margin-top:0px;
        margin-bottom:0px; margin-left:0px; margin-right:0px;
        -qt-block-indent:0; text-indent:0px; color:#000000;"><br>
        This is with Android for x86, Qt 5.4.1 build snapshot.<br>
      </p>
      <p style="-qt-paragraph-type:empty; margin-top:0px;
        margin-bottom:0px; margin-left:0px; margin-right:0px;
        -qt-block-indent:0; text-indent:0px; color:#000000;"><br>
      </p>
      <p style="-qt-paragraph-type:empty; margin-top:0px;
        margin-bottom:0px; margin-left:0px; margin-right:0px;
        -qt-block-indent:0; text-indent:0px; color:#000000;">Any hints
        where to look?<br>
      </p>
    </blockquote>
    <br>
    org.qtproject.qt5.android is not a class. You want:<br>
    <br>
        import org.qtproject.qt5.android.*;<br>
    <br>
    to import all classes in that package.<br>
    <br>
    -- Eskil<br>
    <br>
  </body>
</html>