Skip to content

Instantly share code, notes, and snippets.

View cortinico's full-sized avatar

Nicola Corti cortinico

View GitHub Profile
@cortinico
cortinico / Makefile
Last active January 28, 2019 13:52
Circle CI setup for builing and publishing LaTeX files
CC = xelatex
SRC_DIR = "."
OUT_DIR = "."
SRC = $(shell find $(SRC_DIR) -name '*.tex')
# Build All
build: $(SRC)
$(CC) -output-directory=$(OUT_DIR) $<
@cortinico
cortinico / PrintRule.kt
Created November 27, 2018 15:16
Just a stupid JUnit rule that prints before and after executing a statement
import org.junit.rules.TestRule
import org.junit.runner.Description
import org.junit.runners.model.Statement
class PrintRule(val label: String) : TestRule {
override fun apply(statement: Statement, description: Description): Statement {
return object : Statement() {
override fun evaluate() {
println("$label before statement")
try {
@cortinico
cortinico / README.md
Created June 6, 2017 09:39 — forked from lopspower/README.md
Publish AAR to jCenter and Maven Central

Publish AAR to jCenter and Maven Central

Twitter

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

  2. In the library folder(module) I have the lib code abovementioned. And applying in the build.gradle of this folder apply plugin: 'com.android.library' I got as output an .aar in the build/outputs/aar/ directory of the module's directory

@cortinico
cortinico / android-learning-material.md
Last active May 11, 2017 21:28
A short list of useful books/libraries/newsletters for every android developer (EN/IT)

Here I collect all the useful material related to Android world, probably useful for newbies and people that have never developed on Android.

Feel free to suggest any other source to add in this list :)

Nic :D - corti.nico@gmail.com

English