Re: [codenameone-discussions] io Build fails

2017-08-14 Thread David Wafula
Thanks. Must have been. Redid the whole cert regeneration and all is good now. On Mon, Aug 14, 2017 at 6:29 PM, Steve Hannah <steve.han...@codenameone.com> wrote: > Probably the certificate password is incorrect. > > On Mon, Aug 14, 2017 at 3:31 AM, David Wafula <david..

Re: [codenameone-discussions] Display.getInstance().execute(url) treats every file as pdf

2017-09-14 Thread David Wafula
This is on android 5.1. On a real device. On 14 Sep 2017 18:24, "Steve Hannah" <steve.han...@codenameone.com> wrote: > What platform are you experiencing this on? Android, iOS, Simulator, etc.. > > Steve > > On Thu, Sep 14, 2017 at 7:54 AM, David Wafula <

[codenameone-discussions] iOS Wizard: NoMethodError: undefined method 'each' for nil:NilClass

2017-08-24 Thread David Wafula
Hello Al, Am attempting to add a new device using the iOS wizard. After providing UDID, i get: NoMethodError: undefined method 'each' for nil:NilClass -- David W -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from

Re: [codenameone-discussions] iOS Wizard: NoMethodError: undefined method 'each' for nil:NilClass

2017-08-25 Thread David Wafula
please let me know, and I'll look into it deeper. > Actually, let me know either way. > > Best regards > > Steve > > On Thu, Aug 24, 2017 at 2:51 AM, David Wafula <david...@gmail.com> wrote: > >> Hello Al, >> Am attempting to add a new device using the iOS wi

Re: [codenameone-discussions] Re: Get rid of menu bar thing at top

2018-01-09 Thread David Wafula
toolbar.setUIID("Container"); ? On Tue, Jan 9, 2018 at 9:30 PM, Gareth Murfin wrote: > ps, I have triedToolbar.setGlobalToolbar(false); and the constant in > gui editor with no luck. > > On Tuesday, January 9, 2018 at 8:10:47 PM UTC+8, Gareth Murfin wrote: >> >> Ive

Re: [codenameone-discussions] Re: New android builds show blank Black screen

2018-08-28 Thread David Wafula
Strangely, all my builds since this morning started showing blank black screen on device!. Works fine on simulator. My app uses google maps. A few days ago it was working fine. No exceptions in the logs. Am stuck with what to do. On Tue, Aug 28, 2018 at 7:40 AM Shai Almog wrote: > That means

Re: [codenameone-discussions] Re: New android builds show blank Black screen

2018-08-30 Thread David Wafula
Yes...i had a physical cable and couldn't see anything strange. The quotas were fine too. Whatever that was going on, must have been temporary, new builds as of today are no longer having the issue. On Wed, Aug 29, 2018 at 8:02 AM Shai Almog wrote: > You connected a cable and don't see

Re: [codenameone-discussions] POST problems

2019-01-15 Thread David Wafula
I think it works with this order? r.setUrl(url); //this comes first ?? r.setPost(true); r.addArgument("id", "theid); r.addArgument("pw", "thepws); On Wed, Jan 16, 2019 at 8:26 AM Gareth Murfin wrote: > Post body is empty in there. Should that show post parameters though ? > > On

Re: [codenameone-discussions] POST problems

2019-01-15 Thread David Wafula
Meant: r.setPost comes first before you do the arguments ? On Wed, Jan 16, 2019 at 8:35 AM David Wafula wrote: > I think it works with this order? > > r.setUrl(url); //this comes first ?? > r.setPost(true); > r.addArgument("id", "theid); > r.addArgument(

[codenameone-discussions] Android: How to specify gradle version

2019-05-11 Thread David Wafula
I just looked at the Android source after build, i see it's using gradle 3.0.1. My project uses android native source and requires 3.2.0. How do i specify this ? -- David W -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To

Re: [codenameone-discussions] Re: Android: How to specify gradle version

2019-05-12 Thread David Wafula
I understand. I saw this line in the error log when i got a build error, making me believe it uses gradle 3.0.1 ... Executing: /home/ec2-user/android-sdk/tools/android create project --target android-27 --name StaffApp --path /tmp/build234020841649285069xxx/StaffApp --activity StaffAppStub

[codenameone-discussions] Android Build Fail: Note: the configuration keeps the entry point

2020-03-27 Thread David Wafula
Not sure whether i changed anything (am almost sure i did't). But my builds just started failing with following notes: --- ... Note: the configuration refers to the unknown field 'com.google.android.gms.common.api.internal.BasePendingResult.ReleasableResultGuardian ' in class

Re: [codenameone-discussions] Re: Android Build Fail: Note: the configuration keeps the entry point

2020-03-28 Thread David Wafula
Thanks Shai, I have send the logs, settings on the chat On Sat, Mar 28, 2020 at 8:34 AM Shai Almog wrote: > Hi, > it's hard to tell without the full log that also includes the build hints > etc. If there's a privacy issue involved you can use the chat button on the > website. > > -- > You

Re: [codenameone-discussions] Re: Android Build Fail: Note: the configuration keeps the entry point

2020-03-28 Thread David Wafula
not sure why the warnings started appearing On Sat, Mar 28, 2020 at 11:54 AM David Wafula wrote: > Thanks Shai, > > I have send the logs, settings on the chat > > On Sat, Mar 28, 2020 at 8:34 AM Shai Almog wrote: > >> Hi, >> it's hard to tell without the full lo

[codenameone-discussions] Warning: License for package Android SDK Platform 29 not accepted

2020-04-24 Thread David Wafula
Hi, My android builds just started failing: "com.android.builder.errors.EvalIssueException: Failed to install the following Android SDK packages as some licences have not been accepted. platforms;android-29 Android SDK Platform 29 To build this project, accept the SDK license agreements and

Re: [codenameone-discussions] Re: Warning: License for package Android SDK Platform 29 not accepted

2020-04-25 Thread David Wafula
Fantastic... On Sat, 25 Apr 2020, 06:03 Shai Almog, wrote: > Hi, > this was an issue with the androidX support. It should be resolved now. > > -- > You received this message because you are subscribed to the Google Groups > "CodenameOne Discussions" group. > To unsubscribe from this group and

[codenameone-discussions] PeerComponent: including activity_main.xml from Android

2020-07-07 Thread David Wafula
Hi, I am trying to use an Android native component (org.webrtc.SurfaceViewRenderer), of which am returning as PeerComponent from the native code, and I add it to the CENTER of a container with BorderLayout. But it does not display anything. This component, as you can imagine, displays video

Re: [codenameone-discussions] Re: PeerComponent: including activity_main.xml from Android

2020-07-13 Thread David Wafula
Thanks Shai, Been on this for a few days, I re-engineered the workflow, and now the WebRTC component displays correctly through CN1. The issue was more on my workflow, than UI. I can confirm PeerComponent does work fine with WebRTC rendering. Of course keen to switch to native CN1 WebRTC

[codenameone-discussions] RAD Chat Room Verify Error: ChatRoomView overrides final method AbstractEntityView.bind

2021-01-15 Thread David Wafula
Hi, Am trying to integrate the RAD Chatroom in my existing (Non-MVC) application. However, I get this error when I try to run the code below : java.lang.VerifyError: class com.codename1.rad.ui.chatroom.ChatRoomView overrides final method com.codename1.rad.ui.AbstractEntityView.bind()V at

[codenameone-discussions] Re: RAD Chat Room Verify Error: ChatRoomView overrides final method AbstractEntityView.bind

2021-01-15 Thread David Wafula
Ok I got this to work. Manually replacing the cnlibs downloaded via the Plugin with these https://github.com/shannah/RADChatRoom/tree/master/bin did it. It looks like the CN1plugin is still using 'older' versions? /dww On Fri, Jan 15, 2021 at 10:04 PM David Wafula wrote: > Hi, > >

Re: [codenameone-discussions] Re: Web browser component camera/ mic permissions

2021-05-08 Thread David Wafula
Thanks. I ended up using Native Interfaces so long. On Sat, May 8, 2021 at 6:11 AM Shai Almog wrote: > Hi, > this will be a problem. On Android webRTC might work in the browser (with > said permissions) but embedded browsers don't prompt for permissions. On > iOS webRTC isn't supported in the

[codenameone-discussions] Web browser component camera/ mic permissions

2021-05-07 Thread David Wafula
Hi, Am calling a webrtc enabled page that requires access to camera and mic. How do I get WebbrowserComponent to prompt the user these permissions? Nb: I did add camera permissions in build hints but that seems to have no effect. Thanks. -- You received this message because you are subscribed

[codenameone-discussions] All Buttons text is in Upper Case

2021-07-03 Thread David Wafula
Hi, Text in all Buttons is in upper case. I never set this behaviour and I can't see anywhere in the code/css where I set this behavior. How do I turn off this globally? Thanks -- David W -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions"

Re: [codenameone-discussions] Re: All Buttons text is in Upper Case

2021-07-03 Thread David Wafula
Thank you! That did the trick. Regards. On Sat, Jul 3, 2021 at 6:16 PM ka...@bitxenio.com wrote: > Hi David > > please read this: > > https://www.codenameone.com/developer-guide.html#_uppercase_buttons > > You can disable this theme feature individually or globally. > > Regards > > > El

[codenameone-discussions] Custom Loading progress for BrowserComponent

2021-07-19 Thread David Wafula
Hi, I was reading on this, and I see one can hide loading progress: Display.getInstance().setProperty("WebLoadingHidden", "true"); Is there a way to customize the loading, with own image besides hiding it ? -- David W -- You received this message because you are subscribed to the Google