Rodrigo Boratto

Results 28 comments of Rodrigo Boratto

@dtvtkien feel free to use this PR I just sent. But keep in mind, it is NOT fully tested, but you will be able to compile and run your app...

@kataras I'm just executing it, nothing different: ```sh gomobile bind -target=android . ``` The "gomobile" trick is to create an interface with everything you want to expose to your app...

Sure. On iOS, there is this method for the users to redeem offer codes. You guys already did the iOS SDK for it, just need to expose it on the...

The proxy only turns off on iOS, so, iOS.

Isn't this error code fired by ```dart _server = await HttpServer.bind(InternetAddress.loopbackIPv4, 0); ``` ? Maybe the codes are all the same, since it is a Dart server. Also, one other...

> By the way, @rwrz , do you have reproduction steps for the iOS side? Is it triggered when the phone is turned off, or is it when entering airplane...

Is expected to have a notification even after a "STOP" call? If so, how can I delete the notification completely? Right now, when I stop, it triggers a "notification closed"...

So true! I discovered why and found a way to fix it. They have changed how the "unique" field is defined (this line): ``` Unique: utils.CheckTruth(tagSetting["UNIQUE"]), ``` So, intead of...

Issues related: #5556 , #5341 and probably more. @jinzhu researching more... seems there is a discrepancy between what migrators drivers considers as a *Unique ColumnField* and GORM's Fields (from the...

If the UNIQUE fields are the same as having UNIQUE INDEXES, why not checking **if we do have an unique index first**, then if we have it, toggle `field.unique ==...