Initial commit: Android题库APP - Jetpack Compose + Retrofit
Some checks failed
Build and Release APK / build (push) Has been cancelled
Build and Release APK / release (push) Has been cancelled

This commit is contained in:
爱喝水的木子
2026-04-01 18:32:18 +08:00
commit 98fc3ff879
43 changed files with 3116 additions and 0 deletions

42
fix_gradle_wrapper.bat Normal file
View File

@@ -0,0 +1,42 @@
@echo off
echo ========================================
echo Fix Gradle Wrapper
echo ========================================
echo.
set WRAPPER_JAR=gradle\wrapper\gradle-wrapper.jar
echo Check existing file...
if exist "%WRAPPER_JAR%" (
echo Delete old gradle-wrapper.jar
del /q "%WRAPPER_JAR%"
)
echo.
echo Download gradle-wrapper.jar...
echo.
powershell -Command "Invoke-WebRequest -Uri 'https://github.com/gradle/gradle/raw/v8.13.0/gradle/wrapper/gradle-wrapper.jar' -OutFile '%WRAPPER_JAR%' -UseBasicParsing"
echo.
if exist "%WRAPPER_JAR%" (
echo ========================================
echo SUCCESS! Download completed!
echo ========================================
echo.
echo Now you can run:
echo .\gradlew.bat assembleRelease --no-daemon
echo.
) else (
echo ========================================
echo FAILED! Download failed!
echo ========================================
echo.
echo Please download manually:
echo 1. Visit: https://github.com/gradle/gradle/tree/v8.13.0/gradle/wrapper
echo 2. Right-click gradle-wrapper.jar, save link as
echo 3. Save to: %CD%\gradle\wrapper\
echo.
)
pause