Skip to content

Instantly share code, notes, and snippets.

View alaershov's full-sized avatar

Alexey Ershov alaershov

View GitHub Profile
class Context
interface Module1 {
val dep1: () -> Int
val dep2: String
data class Deps(
val context: Context,
)
@cesarferreira
cesarferreira / howto.md
Created February 29, 2016 10:54 — forked from neworld/howto.md
How to make faster Android build without sacrificing new api lint check

Original solution sacrifices new api lint check.

Here my solution:

int minSdk = hasProperty('minSdk') ? minSdk.toInteger() : 16

apply plugin: 'com.android.application'

android {
 compileSdkVersion 23