| 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 | |||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||||
| package="com.reecedunn.espeak" | |||||
| android:versionCode="20" | android:versionCode="20" | ||||
| android:versionName="1.52-dev" > | android:versionName="1.52-dev" > | ||||
| mavenCentral() | mavenCentral() | ||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:7.2.2' | |||||
| classpath 'com.android.tools.build:gradle:7.3.1' | |||||
| } | } | ||||
| } | } | ||||
| plugins { | plugins { | ||||
| dependencies { | dependencies { | ||||
| testImplementation 'junit:junit:4.12' | |||||
| testImplementation 'junit:junit:4.13.2' | |||||
| androidTestImplementation 'org.hamcrest:hamcrest-all:1.3' | androidTestImplementation 'org.hamcrest:hamcrest-all:1.3' | ||||
| } | } | ||||
| android { | android { | ||||
| compileSdkVersion 33 | |||||
| compileSdk 33 | |||||
| ndkVersion "25.1.8937393" | ndkVersion "25.1.8937393" | ||||
| namespace "com.reecedunn.espeak" | |||||
| defaultConfig { | defaultConfig { | ||||
| minSdkVersion 19 | |||||
| targetSdkVersion 30 | |||||
| minSdk 19 | |||||
| targetSdk 30 | |||||
| versionCode 22 | versionCode 22 | ||||
| versionName "1.52-dev" | versionName "1.52-dev" | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| lintOptions { | |||||
| lint { | |||||
| abortOnError false | abortOnError false | ||||
| } | } | ||||
| } | } |
| distributionBase=GRADLE_USER_HOME | distributionBase=GRADLE_USER_HOME | ||||
| distributionPath=wrapper/dists | distributionPath=wrapper/dists | ||||
| distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4 | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | ||||
| zipStoreBase=GRADLE_USER_HOME | zipStoreBase=GRADLE_USER_HOME | ||||
| zipStorePath=wrapper/dists | zipStorePath=wrapper/dists |
| org.gradle.wrapper.GradleWrapperMain \ | 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. | # Use "xargs" to parse quoted args. | ||||
| # | # | ||||
| # With -n1 it outputs one arg per line, with the quotes and backslashes removed. | # With -n1 it outputs one arg per line, with the quotes and backslashes removed. |
| @rem limitations under the License. | @rem limitations under the License. | ||||
| @rem | @rem | ||||
| @if "%DEBUG%" == "" @echo off | |||||
| @if "%DEBUG%"=="" @echo off | |||||
| @rem ########################################################################## | @rem ########################################################################## | ||||
| @rem | @rem | ||||
| @rem Gradle startup script for Windows | @rem Gradle startup script for Windows | ||||
| if "%OS%"=="Windows_NT" setlocal | if "%OS%"=="Windows_NT" setlocal | ||||
| 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% | ||||
| set JAVA_EXE=java.exe | set JAVA_EXE=java.exe | ||||
| %JAVA_EXE% -version >NUL 2>&1 | %JAVA_EXE% -version >NUL 2>&1 | ||||
| if "%ERRORLEVEL%" == "0" goto execute | |||||
| if %ERRORLEVEL% equ 0 goto execute | |||||
| echo. | echo. | ||||
| echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. | ||||
| :end | :end | ||||
| @rem End local scope for the variables with windows NT shell | @rem End local scope for the variables with windows NT shell | ||||
| if "%ERRORLEVEL%"=="0" goto mainEnd | |||||
| if %ERRORLEVEL% equ 0 goto mainEnd | |||||
| :fail | :fail | ||||
| rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of | ||||
| rem the _cmd.exe /c_ return code! | 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 | :mainEnd | ||||
| if "%OS%"=="Windows_NT" endlocal | if "%OS%"=="Windows_NT" endlocal |