Skip to content

Instantly share code, notes, and snippets.

View ChathuraHettiarachchi's full-sized avatar
📡
Looking for new things...

Choota ChathuraHettiarachchi

📡
Looking for new things...
View GitHub Profile
@milechainsaw
milechainsaw / Model.kt
Last active May 19, 2020 16:44
ObjectBox converter for List<String> properties in your Kotlin data model. http://objectbox.io/
package com.test.objectbox.models
import io.objectbox.annotation.Convert
import io.objectbox.annotation.Entity
import io.objectbox.annotation.Id
@Entity data class Article(
@Id var id: Long = 0,
@Convert(converter = StringListConverter::class, dbType = String::class)
var strings: List<String>? = null,
@lopspower
lopspower / README.md
Last active January 20, 2024 09:18
Publish AAR to jCenter and Maven Central

Publish AAR to jCenter and Maven Central

Twitter

EDIT: You can find this same updated tutorial here -> Medium

Now I'm going to list how to publish an Android libray to jCenter and then syncronize it with Maven Central:

  1. I use "Android Studio" and I have this simple android lib that I would like to be available on maven: CircularImageView