https://kotlinlang.org logo
Join SlackCommunities
Powered by
# kovenant
  • k

    Krystal

    04/25/2018, 5:12 PM
    I dont know where should i work for fix it
  • m

    mplatvoet

    04/25/2018, 5:13 PM
    did you starKovenant?
  • m

    mplatvoet

    04/25/2018, 5:13 PM
    http://kovenant.komponents.nl/android/config/
  • k

    Krystal

    04/25/2018, 5:13 PM
    Yup
  • k

    Krystal

    04/25/2018, 5:14 PM
    Yeah i already test my app on other API (23,26) but it only bug on this phone (a real one)
  • k

    Krystal

    04/25/2018, 5:14 PM
    And everything work for the API above 23
  • m

    mplatvoet

    04/25/2018, 5:15 PM
    can you file a bug on github please?
  • m

    mplatvoet

    04/25/2018, 5:16 PM
    no ideas at the moment tbh
  • k

    Krystal

    04/25/2018, 5:19 PM
    I verify from my side and if i didnt find anything, i post a issue ?
  • m

    mplatvoet

    04/25/2018, 5:20 PM
    yes please, on github please
  • k

    Krystal

    04/25/2018, 5:28 PM
    done
    <https://github.com/mplatvoet/kovenant/issues/14>
  • m

    mplatvoet

    04/25/2018, 5:28 PM
    thanks
  • m

    Mitch Ware

    05/21/2018, 4:16 PM
    How can I build kovenant from source?
  • m

    Mitch Ware

    05/21/2018, 4:17 PM
    more specifically, how can I resolve this error when running `./gradlew build`:
    Copy code
    Execution failed for task ':kovenant-android:signArchives'.
    > Cannot perform signing task ':kovenant-android:signArchives' because it has no configured signatory
  • m

    mplatvoet

    05/21/2018, 4:27 PM
    Are you trying to build master? Develop branch should work.
  • m

    Mitch Ware

    05/21/2018, 4:42 PM
    hmm, nope, switching to develop gives the same error
  • m

    Mitch Ware

    05/21/2018, 4:42 PM
    Is there a way I can disable the signing plugin all together and just build an unsigned JAR?
  • m

    mplatvoet

    05/21/2018, 5:22 PM
    Will take a look , after I put the kids to bed
  • m

    mplatvoet

    05/21/2018, 5:39 PM
    there’s now flag or option, but you can always remove singing from the build.gradle
  • m

    Mitch Ware

    05/21/2018, 6:00 PM
    Awesome, yeah that's what I ended up doing. Thanks!
  • j

    Jonathan Ghazarian

    06/20/2018, 9:01 PM
    I'm not well versed in rxjava, but I'm trying to use the rxjava extension of kovenant with another library that uses rxjava as well. The problem is that kovenant uses version 1.2.3 of rxjava and this other library uses a 2.x version, which appear incompatible. Does anyone know a way to get this working within gradle, or would I be better off building my own fork of kovenant with the upgraded dependency?
  • j

    Jonathan Ghazarian

    06/20/2018, 9:02 PM
    looking at it closely, it appears that they have different package names, so I'm guessing it'll just be totally incompatible
  • k

    kenkyee

    06/25/2018, 10:59 PM
    If you don't know rxjava, upgrading the library will be painful. You can use an rxjava2 interop library to translate between the two versions...
  • j

    Jonathan Ghazarian

    06/25/2018, 11:04 PM
    thanks, I decided to avoid integrating this other library for the time being.
  • m

    Markus

    05/17/2019, 1:13 PM
    Is anyone here using Kovenant for background tasks? I don’t understand how to catch exceptions thrown in the lambda try { task { doSomething() } successUI { throw Exception() } } catch (e:Exception) {} // This will not catch anything Thread in #android
  • m

    Markus

    05/17/2019, 1:13 PM
    didnt know there even was a Kovenant channel here 🙂 What do you recommend in the above case ⬆️
  • m

    Markus

    05/17/2019, 1:14 PM
    Big thanks for this library btw, I am writing an app with very many network calls and Kovenant has made my life so much easier
  • m

    Markus

    05/17/2019, 1:16 PM
    I could use try/catch inside successUi of course but then I don’t understand how to break out of the scope so the code that follows after the thrown exception is not executed
  • m

    Markus

    05/17/2019, 1:17 PM
    We put out this app in beta-stage yesterday and I noticed that none of my try/catches that I wrap Kovenant-tasks in are catching anything so we have many users with crashes
  • m

    Markus

    05/22/2019, 11:40 AM
    Hmm…