Skip to content

Commit

Permalink
Libraries update and drop of android-apt
Browse files Browse the repository at this point in the history
  • Loading branch information
igoticecream committed Oct 7, 2016
1 parent 48cb283 commit a4f2014
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
7 changes: 3 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apply plugin: 'com.android.application'
apply plugin: 'com.google.protobuf'
apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'me.tatarka.retrolambda'

apply from: "${rootDir}/buildscript/signing/sign.gradle"
Expand Down Expand Up @@ -123,12 +122,12 @@ dependencies {
compile libraries.rxRelay

compile libraries.butterknife
apt libraries.butterknifeCompiler
annotationProcessor libraries.butterknifeCompiler

compile libraries.dagger
apt libraries.daggerCompiler
annotationProcessor libraries.daggerCompiler

apt libraries.autoValue
annotationProcessor libraries.autoValue
provided libraries.autoValueAnnotations

provided libraries.xposed
Expand Down
12 changes: 5 additions & 7 deletions buildscript/dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
ext {
pluginVersions = [
android : '2.2.0',
apt : '1.8',
android : '2.2.1',
retrolambda: '3.3.0',
protobuf : '0.8.0',
versions : '0.13.0'
]
testVersions = [
junit : '4.12',
mockito : '2.1.0-RC.1',
mockito : '2.1.0',
hamcrest : '1.4-atlassian-1',
powermock: '1.6.5'
]
libraryVersions = [
supportLib : '24.2.1',
xposed : '82',
rxJava : '1.2.0',
rxJava : '1.2.1',
rxAndroid : '1.2.1',
rxBinding : '0.4.0',
rxRelay : '1.1.0',
rxRelay : '1.2.0',
dagger : '2.7',
protobuf : '3.0.2',
protobuf : '3.1.0',
protobufLite : '3.0.1',
protobufGenLite : '3.0.0',
autoValue : '1.3',
Expand All @@ -31,7 +30,6 @@ ext {

pluginLibraries = [
android : "com.android.tools.build:gradle:${pluginVersions.android}",
apt : "com.neenbedankt.gradle.plugins:android-apt:${pluginVersions.apt}",
retrolambda: "me.tatarka:gradle-retrolambda:${pluginVersions.retrolambda}",
protobuf : "com.google.protobuf:protobuf-gradle-plugin:${pluginVersions.protobuf}",
versions : "com.github.ben-manes:gradle-versions-plugin:${pluginVersions.versions}"
Expand Down

0 comments on commit a4f2014

Please sign in to comment.