Adrian

Results 12 comments of Adrian

Yes in my test case it's a SQLite database.

@offdroid, @dev-JE02: You can use jitpack.io as additional package repository like this: **root build.gradle** ``` allprojects { repositories { jcenter() maven { url "https://maven.google.com" } maven { url 'https://jitpack.io' }...

same behavior in Windows 10

I'm also interesten in an alternative. :smile:

To be able to compile on MacOS i need to replace ```c #include ``` in [/jni/ioctl.h](https://github.com/raburton/evoplus_cid/blob/master/jni/ioctl.h#L7) with: ```c #ifdef __linux__ # include "linux/types.h" #else # include typedef uint64_t __u64; typedef...

Any news available? I wait for the merge in #26 (branch [feature/change_background_color](/TangoAgency/avatar-view/tree/feature/change_background_color)) πŸ˜„

I have the same issue (in _CalendarViewAdapter.java:258_), when i call **notifyDataChanged()** after init. this.currentPosition has the value 0 and (this.currentPosition - 1) % 3 results -1

My solution was to create a Adapter that inherits from CalendarViewAdapter and overrides **finishUpdate(container: ViewGroup)** to delegate the information to the Fragment or Presenter. When the **finishUpdate(container: ViewGroup)** is called,...

I have the same issue and have tried to solve it with this config extension (but unfortunately without success): ``` ffmpeg: output_args: rtmp: -c copy -f flv -flvflags no_duration_filesize ```...

I have tried to update the version but i get the following error: `java.lang.NoClassDefFoundError: com/twelvemonkeys/imageio/spi/ImageWriterSpiBase` After a little search i found your comment in [build.sbt#L61](https://github.com/hhandoko/play2-scala-pdf/blob/master/modules/play26/build.sbt#L61). I removed ` % Test`...