Skip to content

Commit

Permalink
Migrate to Android plugin for Gradle 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
petrnohejl committed Dec 11, 2017
1 parent 2f836d1 commit 91ecd4e
Show file tree
Hide file tree
Showing 15 changed files with 122 additions and 118 deletions.
12 changes: 6 additions & 6 deletions alfonz-adapter/build.gradle
Expand Up @@ -39,12 +39,12 @@ android {




dependencies { dependencies {
compile fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:support-compat:$androidSupportVersion" implementation "com.android.support:support-compat:$androidSupportVersion"
compile "com.android.support:support-core-ui:$androidSupportVersion" implementation "com.android.support:support-core-ui:$androidSupportVersion"
compile "com.android.support:recyclerview-v7:$androidSupportVersion" implementation "com.android.support:recyclerview-v7:$androidSupportVersion"
compile "com.android.support:support-annotations:$androidSupportVersion" implementation "com.android.support:support-annotations:$androidSupportVersion"
compile "com.android.support:support-v4:$androidSupportVersion" // https://stackoverflow.com/questions/41568032/android-data-binding-dependency-conflict-with-the-support-library implementation "com.android.support:support-v4:$androidSupportVersion" // https://stackoverflow.com/questions/41568032/android-data-binding-dependency-conflict-with-the-support-library
} }




Expand Down
12 changes: 6 additions & 6 deletions alfonz-arch/build.gradle
Expand Up @@ -39,12 +39,12 @@ android {




dependencies { dependencies {
compile fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
compile "android.arch.lifecycle:runtime:$androidArchVersion" implementation "android.arch.lifecycle:runtime:$androidArchVersion"
compile "android.arch.lifecycle:extensions:$androidArchBetaVersion" implementation "android.arch.lifecycle:extensions:$androidArchBetaVersion"
compile "com.android.support:support-fragment:$androidSupportVersion" implementation "com.android.support:support-fragment:$androidSupportVersion"
compile "com.android.support:appcompat-v7:$androidSupportVersion" implementation "com.android.support:appcompat-v7:$androidSupportVersion"
compile "com.android.support:support-annotations:$androidSupportVersion" implementation "com.android.support:support-annotations:$androidSupportVersion"
annotationProcessor "android.arch.lifecycle:compiler:$androidArchBetaVersion" annotationProcessor "android.arch.lifecycle:compiler:$androidArchBetaVersion"
} }


Expand Down
4 changes: 2 additions & 2 deletions alfonz-graphics/build.gradle
Expand Up @@ -35,8 +35,8 @@ android {




dependencies { dependencies {
compile fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:support-annotations:$androidSupportVersion" implementation "com.android.support:support-annotations:$androidSupportVersion"
} }




Expand Down
8 changes: 4 additions & 4 deletions alfonz-media/build.gradle
Expand Up @@ -35,10 +35,10 @@ android {




dependencies { dependencies {
compile fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
compile project(":alfonz-graphics") implementation project(":alfonz-graphics")
compile "com.android.support:support-fragment:$androidSupportVersion" implementation "com.android.support:support-fragment:$androidSupportVersion"
compile "com.android.support:support-annotations:$androidSupportVersion" implementation "com.android.support:support-annotations:$androidSupportVersion"
} }




Expand Down
10 changes: 5 additions & 5 deletions alfonz-mvvm/build.gradle
Expand Up @@ -39,11 +39,11 @@ android {




dependencies { dependencies {
compile fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:support-fragment:$androidSupportVersion" implementation "com.android.support:support-fragment:$androidSupportVersion"
compile "com.android.support:appcompat-v7:$androidSupportVersion" implementation "com.android.support:appcompat-v7:$androidSupportVersion"
compile "com.android.support:support-annotations:$androidSupportVersion" implementation "com.android.support:support-annotations:$androidSupportVersion"
compile "eu.inloop:androidviewmodel:$androidViewModelVersion" api "eu.inloop:androidviewmodel:$androidViewModelVersion"
} }




Expand Down
14 changes: 7 additions & 7 deletions alfonz-rest/build.gradle
@@ -1,5 +1,4 @@
apply plugin: "com.android.library" apply plugin: "com.android.library"
apply plugin: "me.tatarka.retrolambda"
apply from: "../utils.gradle" apply from: "../utils.gradle"




Expand Down Expand Up @@ -36,12 +35,13 @@ android {




dependencies { dependencies {
compile fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
compile project(":alfonz-rx") implementation project(":alfonz-rx")
compile "com.android.support:support-annotations:$androidSupportVersion" implementation "com.android.support:support-core-utils:$androidSupportVersion"
compile "com.squareup.okhttp3:okhttp:$okHttpVersion" implementation "com.android.support:support-annotations:$androidSupportVersion"
compile "com.squareup.retrofit2:retrofit:$retrofitVersion" implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
compile "io.reactivex.rxjava2:rxjava:$rxJavaVersion" implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
} }




Expand Down
13 changes: 6 additions & 7 deletions alfonz-rx/build.gradle
@@ -1,5 +1,4 @@
apply plugin: "com.android.library" apply plugin: "com.android.library"
apply plugin: "me.tatarka.retrolambda"
apply from: "../utils.gradle" apply from: "../utils.gradle"




Expand Down Expand Up @@ -36,12 +35,12 @@ android {




dependencies { dependencies {
compile fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:support-core-utils:$androidSupportVersion" implementation "com.android.support:support-core-utils:$androidSupportVersion"
compile "com.android.support:support-annotations:$androidSupportVersion" implementation "com.android.support:support-annotations:$androidSupportVersion"
compile "com.jakewharton.rxrelay2:rxrelay:$rxRelayVersion" implementation "com.jakewharton.rxrelay2:rxrelay:$rxRelayVersion"
compile "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion" implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
compile "io.reactivex.rxjava2:rxjava:$rxJavaVersion" implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
} }




Expand Down
8 changes: 4 additions & 4 deletions alfonz-utility/build.gradle
Expand Up @@ -35,10 +35,10 @@ android {




dependencies { dependencies {
compile fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:support-fragment:$androidSupportVersion" implementation "com.android.support:support-fragment:$androidSupportVersion"
compile "com.android.support:support-annotations:$androidSupportVersion" implementation "com.android.support:support-annotations:$androidSupportVersion"
compile "com.android.support:design:$androidSupportVersion" implementation "com.android.support:design:$androidSupportVersion"
} }




Expand Down
4 changes: 2 additions & 2 deletions alfonz-view/build.gradle
Expand Up @@ -35,8 +35,8 @@ android {




dependencies { dependencies {
compile fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:support-annotations:$androidSupportVersion" implementation "com.android.support:support-annotations:$androidSupportVersion"
} }




Expand Down
8 changes: 3 additions & 5 deletions build.gradle
Expand Up @@ -51,14 +51,14 @@ buildscript {
} }


repositories { repositories {
google()
jcenter() jcenter()
} }


dependencies { dependencies {
classpath "com.android.tools.build:gradle:2.3.3" classpath "com.android.tools.build:gradle:3.0.1"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3" classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3"
classpath "com.github.dcendents:android-maven-gradle-plugin:1.5" classpath "com.github.dcendents:android-maven-gradle-plugin:1.5"
classpath "me.tatarka:gradle-retrolambda:3.7.0"


// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
Expand All @@ -67,10 +67,8 @@ buildscript {


allprojects { allprojects {
repositories { repositories {
google()
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
} }


Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Tue Apr 04 13:47:25 CEST 2017 #Mon Dec 11 21:57:41 CET 2017
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
72 changes: 42 additions & 30 deletions gradlew
@@ -1,25 +1,43 @@
#!/usr/bin/env bash #!/usr/bin/env sh


############################################################################## ##############################################################################
## ##
## Gradle start up script for UN*X ## Gradle start up script for UN*X
## ##
############################################################################## ##############################################################################


# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. # Attempt to set APP_HOME
DEFAULT_JVM_OPTS="" # Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null


APP_NAME="Gradle" APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"` APP_BASE_NAME=`basename "$0"`


# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""

# Use the maximum available, or set MAX_FD != -1 to use that value. # Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum" MAX_FD="maximum"


warn ( ) { warn () {
echo "$*" echo "$*"
} }


die ( ) { die () {
echo echo
echo "$*" echo "$*"
echo echo
Expand All @@ -30,6 +48,7 @@ die ( ) {
cygwin=false cygwin=false
msys=false msys=false
darwin=false darwin=false
nonstop=false
case "`uname`" in case "`uname`" in
CYGWIN* ) CYGWIN* )
cygwin=true cygwin=true
Expand All @@ -40,26 +59,11 @@ case "`uname`" in
MINGW* ) MINGW* )
msys=true msys=true
;; ;;
NONSTOP* )
nonstop=true
;;
esac esac


# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar


# Determine the Java command to use to start the JVM. # Determine the Java command to use to start the JVM.
Expand All @@ -85,7 +89,7 @@ location of your Java installation."
fi fi


# Increase the maximum file descriptors if we can. # Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n` MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
Expand Down Expand Up @@ -150,11 +154,19 @@ if $cygwin ; then
esac esac
fi fi


# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules # Escape application args
function splitJvmOpts() { save () {
JVM_OPTS=("$@") for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
} }
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS APP_ARGS=$(save "$@")
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"

# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
cd "$(dirname "$0")"
fi


exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" exec "$JAVACMD" "$@"
14 changes: 4 additions & 10 deletions gradlew.bat
Expand Up @@ -8,14 +8,14 @@
@rem Set local scope for the variables with windows NT shell @rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal if "%OS%"=="Windows_NT" setlocal


@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=

set DIRNAME=%~dp0 set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=. if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0 set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME% set APP_HOME=%DIRNAME%


@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=

@rem Find java.exe @rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome if defined JAVA_HOME goto findJavaFromJavaHome


Expand Down Expand Up @@ -46,10 +46,9 @@ echo location of your Java installation.
goto fail goto fail


:init :init
@rem Get command-line arguments, handling Windowz variants @rem Get command-line arguments, handling Windows variants


if not "%OS%" == "Windows_NT" goto win9xME_args if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args


:win9xME_args :win9xME_args
@rem Slurp the command line arguments. @rem Slurp the command line arguments.
Expand All @@ -60,11 +59,6 @@ set _SKIP=2
if "x%~1" == "x" goto execute if "x%~1" == "x" goto execute


set CMD_LINE_ARGS=%* set CMD_LINE_ARGS=%*
goto execute

:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$


:execute :execute
@rem Setup the command line @rem Setup the command line
Expand Down

0 comments on commit 91ecd4e

Please sign in to comment.