Hi chen! how are you? i hope fine!

i tryed with the build hint but it makes errors.

what is wrong?

[code]
my code for the android implementation is:
 public void setMaxZoom(final int zoom) {
        maxZoom = zoom;
        AndroidImplementation.runOnUiThreadAndBlock(new Runnable() {
            public void run() {
                              mapInstance.setMaxZoomPreference(zoom);
            }
        });
    }

    public void setMinZoom(final int zoom) {
        minZoom = zoom;
        if (mapInstance != null) {

            AndroidImplementation.runOnUiThreadAndBlock(new Runnable() {
                public void run() {
                    mapInstance.setMinZoomPreference(zoom);
                }
            });
        }

    }

[code]
On Monday, November 14, 2016 at 10:42:58 AM UTC-3, Chen Fishbein wrote:
>
> Hi,
> The build hint should be:
>
> android.playServicesVersion = 9.4.0
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/f03d7ef1-7d92-4e9e-a02f-308f7dc1cbae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to