@@ -0,0 +1,11 @@ | |||
name: "Validate Gradle Wrapper" | |||
on: [push, pull_request] | |||
jobs: | |||
validation: | |||
name: "Validation" | |||
runs-on: ubuntu-latest | |||
steps: | |||
- uses: actions/checkout@v3 | |||
- uses: gradle/wrapper-validation-action@v1 | |||
@@ -1,6 +1,5 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |||
package="com.reecedunn.espeak" | |||
android:versionCode="20" | |||
android:versionName="1.52-dev" > | |||
@@ -4,7 +4,7 @@ buildscript { | |||
mavenCentral() | |||
} | |||
dependencies { | |||
classpath 'com.android.tools.build:gradle:7.2.2' | |||
classpath 'com.android.tools.build:gradle:7.3.1' | |||
} | |||
} | |||
plugins { | |||
@@ -21,7 +21,7 @@ repositories { | |||
dependencies { | |||
testImplementation 'junit:junit:4.12' | |||
testImplementation 'junit:junit:4.13.2' | |||
androidTestImplementation 'org.hamcrest:hamcrest-all:1.3' | |||
} | |||
@@ -65,12 +65,13 @@ preBuild.dependsOn createDataVersion | |||
android { | |||
compileSdkVersion 33 | |||
compileSdk 33 | |||
ndkVersion "25.1.8937393" | |||
namespace "com.reecedunn.espeak" | |||
defaultConfig { | |||
minSdkVersion 19 | |||
targetSdkVersion 30 | |||
minSdk 19 | |||
targetSdk 30 | |||
versionCode 22 | |||
versionName "1.52-dev" | |||
} | |||
@@ -93,7 +94,7 @@ android { | |||
} | |||
} | |||
lintOptions { | |||
lint { | |||
abortOnError false | |||
} | |||
} |
@@ -1,5 +1,6 @@ | |||
distributionBase=GRADLE_USER_HOME | |||
distributionPath=wrapper/dists | |||
distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4 | |||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | |||
zipStoreBase=GRADLE_USER_HOME | |||
zipStorePath=wrapper/dists |
@@ -205,6 +205,12 @@ set -- \ | |||
org.gradle.wrapper.GradleWrapperMain \ | |||
"$@" | |||
# Stop when "xargs" is not available. | |||
if ! command -v xargs >/dev/null 2>&1 | |||
then | |||
die "xargs is not available" | |||
fi | |||
# Use "xargs" to parse quoted args. | |||
# | |||
# With -n1 it outputs one arg per line, with the quotes and backslashes removed. |
@@ -14,7 +14,7 @@ | |||
@rem limitations under the License. | |||
@rem | |||
@if "%DEBUG%" == "" @echo off | |||
@if "%DEBUG%"=="" @echo off | |||
@rem ########################################################################## | |||
@rem | |||
@rem Gradle startup script for Windows | |||
@@ -25,7 +25,7 @@ | |||
if "%OS%"=="Windows_NT" setlocal | |||
set DIRNAME=%~dp0 | |||
if "%DIRNAME%" == "" set DIRNAME=. | |||
if "%DIRNAME%"=="" set DIRNAME=. | |||
set APP_BASE_NAME=%~n0 | |||
set APP_HOME=%DIRNAME% | |||
@@ -40,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome | |||
set JAVA_EXE=java.exe | |||
%JAVA_EXE% -version >NUL 2>&1 | |||
if "%ERRORLEVEL%" == "0" goto execute | |||
if %ERRORLEVEL% equ 0 goto execute | |||
echo. | |||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. | |||
@@ -75,13 +75,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar | |||
:end | |||
@rem End local scope for the variables with windows NT shell | |||
if "%ERRORLEVEL%"=="0" goto mainEnd | |||
if %ERRORLEVEL% equ 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 | |||
set EXIT_CODE=%ERRORLEVEL% | |||
if %EXIT_CODE% equ 0 set EXIT_CODE=1 | |||
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% | |||
exit /b %EXIT_CODE% | |||
:mainEnd | |||
if "%OS%"=="Windows_NT" endlocal |