diff --git a/AndroidTestingBlueprint-kotlinApp/app/build.gradle b/AndroidTestingBlueprint-kotlinApp/app/build.gradle index 33864b9..04db631 100644 --- a/AndroidTestingBlueprint-kotlinApp/app/build.gradle +++ b/AndroidTestingBlueprint-kotlinApp/app/build.gradle @@ -73,14 +73,14 @@ android { dependencies { // App's dependencies, including test implementation "com.android.support:appcompat-v7:$rootProject.ext.supportLibVersion" - implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlinVersion" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion" implementation project(':module-plain-kotlin') // Optional module for non-Android code implementation project(':module-android-library') // Optional module for additional Android code // Dependencies for local unit tests testImplementation "junit:junit:$rootProject.ext.junitVersion" - testImplementation "org.mockito:mockito-all:$rootProject.ext.mockitoVersion" + testImplementation "org.mockito:mockito-core:$rootProject.ext.mockitoVersion" testImplementation "org.hamcrest:hamcrest-all:$rootProject.ext.hamcrestVersion" // Android Testing Support Library's runner and rules @@ -103,4 +103,4 @@ dependencies { // Resolve conflicts between main and test APK: androidTestImplementation "com.android.support:support-annotations:$rootProject.supportLibVersion" -} +} \ No newline at end of file diff --git a/AndroidTestingBlueprint-kotlinApp/build.gradle b/AndroidTestingBlueprint-kotlinApp/build.gradle index 0a5282f..26ba49f 100644 --- a/AndroidTestingBlueprint-kotlinApp/build.gradle +++ b/AndroidTestingBlueprint-kotlinApp/build.gradle @@ -3,27 +3,29 @@ buildscript { ext { minSdkVersion = 14 - targetSdkVersion = 27 - compileSdkVersion = 27 + targetSdkVersion = 28 + compileSdkVersion = 28 - kotlinVersion = "1.2.0" - supportLibVersion = "27.0.2" + gradleVersion = "3.3.2" + kotlinVersion = "1.3.21" + supportLibVersion = "28.0.0" junitVersion = "4.12" - mockitoVersion = "1.10.19" + mockitoVersion = "2.25.1" hamcrestVersion = "1.3" - runnerVersion = "0.5" - rulesVersion = "0.5" - espressoVersion = "2.2.2" + runnerVersion = "1.0.2" + rulesVersion = "1.0.2" + espressoVersion = "3.0.0" uiautomatorVersion = "2.1.2" } repositories { jcenter() + mavenCentral() google() } dependencies { - classpath 'com.android.tools.build:gradle:3.0.1' + classpath "com.android.tools.build:gradle:$gradleVersion" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" // NOTE: Do not place your application dependencies here; they belong @@ -34,6 +36,7 @@ buildscript { allprojects { repositories { jcenter() + mavenCentral() google() } -} +} \ No newline at end of file diff --git a/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.jar b/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.jar index 8c0fb64..87b738c 100644 Binary files a/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.jar and b/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.jar differ diff --git a/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.properties b/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.properties index abd2403..c4486d4 100644 --- a/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.properties +++ b/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,5 @@ -#Tue Dec 06 13:05:10 GMT 2016 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.3.1-all.zip diff --git a/AndroidTestingBlueprint-kotlinApp/gradlew b/AndroidTestingBlueprint-kotlinApp/gradlew index 91a7e26..af6708f 100755 --- a/AndroidTestingBlueprint-kotlinApp/gradlew +++ b/AndroidTestingBlueprint-kotlinApp/gradlew @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh ############################################################################## ## @@ -6,20 +6,38 @@ ## ############################################################################## -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS="" +# 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 APP_NAME="Gradle" 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='"-Xmx64m"' + # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD="maximum" -warn ( ) { +warn () { echo "$*" } -die ( ) { +die () { echo echo "$*" echo @@ -30,6 +48,7 @@ die ( ) { cygwin=false msys=false darwin=false +nonstop=false case "`uname`" in CYGWIN* ) cygwin=true @@ -40,31 +59,11 @@ case "`uname`" in MINGW* ) msys=true ;; + NONSTOP* ) + nonstop=true + ;; esac -# For Cygwin, ensure paths are in UNIX format before anything is touched. -if $cygwin ; then - [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` -fi - -# 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\"`/" >&- -APP_HOME="`pwd -P`" -cd "$SAVED" >&- - CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar # Determine the Java command to use to start the JVM. @@ -90,7 +89,7 @@ location of your Java installation." fi # 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` if [ $? -eq 0 ] ; then if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then @@ -114,6 +113,7 @@ fi if $cygwin ; then APP_HOME=`cygpath --path --mixed "$APP_HOME"` CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` # We build the pattern for arguments to be converted via cygpath ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` @@ -154,11 +154,19 @@ if $cygwin ; then esac fi -# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules -function splitJvmOpts() { - JVM_OPTS=("$@") +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " } -eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS -JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" +APP_ARGS=$(save "$@") + +# 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" "$@" diff --git a/AndroidTestingBlueprint-kotlinApp/gradlew.bat b/AndroidTestingBlueprint-kotlinApp/gradlew.bat index 8a0b282..0f8d593 100644 --- a/AndroidTestingBlueprint-kotlinApp/gradlew.bat +++ b/AndroidTestingBlueprint-kotlinApp/gradlew.bat @@ -1,90 +1,84 @@ -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -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 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto init - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto init - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:init -@rem Get command-line arguments, handling Windowz variants - -if not "%OS%" == "Windows_NT" goto win9xME_args -if "%@eval[2+2]" == "4" goto 4NT_args - -:win9xME_args -@rem Slurp the command line arguments. -set CMD_LINE_ARGS= -set _SKIP=2 - -:win9xME_args_slurp -if "x%~1" == "x" goto execute - -set CMD_LINE_ARGS=%* -goto execute - -:4NT_args -@rem Get arguments from the 4NT Shell from JP Software -set CMD_LINE_ARGS=%$ - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +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="-Xmx64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/AndroidTestingBlueprint-kotlinApp/module-android-library/build.gradle b/AndroidTestingBlueprint-kotlinApp/module-android-library/build.gradle index 40e21fe..920b79d 100644 --- a/AndroidTestingBlueprint-kotlinApp/module-android-library/build.gradle +++ b/AndroidTestingBlueprint-kotlinApp/module-android-library/build.gradle @@ -20,9 +20,9 @@ android { } dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlinVersion" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion" // Android Testing Support Library's runner and rules androidTestImplementation "com.android.support.test:runner:$rootProject.ext.runnerVersion" androidTestImplementation "com.android.support.test:rules:$rootProject.ext.rulesVersion" -} +} \ No newline at end of file diff --git a/AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/build.gradle b/AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/build.gradle index 9d55b22..65a3308 100644 --- a/AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/build.gradle +++ b/AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/build.gradle @@ -27,5 +27,5 @@ dependencies { implementation "com.android.support.test:runner:$rootProject.ext.runnerVersion" implementation "com.android.support.test:rules:$rootProject.ext.rulesVersion" implementation "org.hamcrest:hamcrest-core:$rootProject.ext.hamcrestVersion" - implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlinVersion" -} + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion" +} \ No newline at end of file diff --git a/AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/build.gradle b/AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/build.gradle index 322ee79..4fed840 100644 --- a/AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/build.gradle +++ b/AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/build.gradle @@ -1,9 +1,9 @@ apply plugin: 'kotlin' dependencies { - compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlinVersion" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion" // Dependencies for local unit tests testCompile 'junit:junit:' + rootProject.ext.junitVersion testCompile 'org.hamcrest:hamcrest-core:' + rootProject.ext.hamcrestVersion -} +} \ No newline at end of file