
moved from assistant to one single activity model with dialogs and navigation drawer as main content holder completed separate threaded queue based service to communicate with daemon(s) added first few elements to the nav drawer
48 lines
1.3 KiB
Groovy
48 lines
1.3 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.3'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'com.jakewharton.hugo'
|
|
apply plugin: 'com.github.ben-manes.versions'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion '23.0.0'
|
|
|
|
defaultConfig {
|
|
applicationId "com.idlegandalf.ledd"
|
|
minSdkVersion 16
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
compile 'com.android.support:appcompat-v7:23.0.0'
|
|
compile 'com.android.support:support-v4:23.0.0'
|
|
compile 'com.squareup.okhttp:okhttp:2.5.0'
|
|
compile 'com.google.code.gson:gson:2.3.1'
|
|
compile 'com.jakewharton:butterknife:7.0.1'
|
|
compile 'com.koushikdutta.async:androidasync:2.1.6'
|
|
compile 'com.android.support:design:23.0.0'
|
|
compile 'com.rarepebble:colorpicker:1.3.0'
|
|
provided 'org.projectlombok:lombok:1.16.6'
|
|
}
|