Skip to content

OpenWilma/openwilma.kotlin

Repository files navigation

openwilma.kotlin

OpenWilma Kotlin library

How to install

  1. Add jitpack.io to root build.gradle:
allprojects {
    repositories {
	...
	maven { url 'https://maven.testausserveri.fi/openwilma' }
    }
}
  1. Add dependency
dependencies {
   implementation 'org.openwilma:kotlin:0.9.8-BETA'
}
  1. Start using OpenWilma!

Android and ProGuard

If you're using ProGuard in your Android project, be sure to include this snippet in your proguard-rules.pro:

-keep class org.openwilma.** { *; }
-keep public class org.openwilma.** { *; }