-实现了`generateCaptcha`函数来创建随机验证码。 -添加了`drawCaptcha`函数,在画布上渲染带有视觉噪声的验证码。 feat:引入数据操作实用程序 -为数据处理创建了“normalizeText”、“filterRows”、“attachSheetName”、“flatenRows”和“buildDuplicates”函数。 -添加了用于记录管理的“createLoginLog”、“createRecord”、“mapMovieToRecord”和“createFolder”函数。 -实现了“buildTree”函数来构建分层数据结构。 feat:实现滚动锁定机制 -添加了“lockScroll”和“unlockScrolls”功能,以管理模式交互期间的后台滚动行为。 feat:创建存储实用程序函数 -引入了从本地存储中读取、写入和删除项目的功能。 chore:设置Vite配置 -配置了使用Vue进行开发的Vite,包括服务器设置和API代理。
16 lines
498 B
Groovy
16 lines
498 B
Groovy
ext {
|
|
minSdkVersion = 24
|
|
compileSdkVersion = 36
|
|
targetSdkVersion = 36
|
|
androidxActivityVersion = '1.11.0'
|
|
androidxAppCompatVersion = '1.7.1'
|
|
androidxCoordinatorLayoutVersion = '1.3.0'
|
|
androidxCoreVersion = '1.17.0'
|
|
androidxFragmentVersion = '1.8.9'
|
|
coreSplashScreenVersion = '1.2.0'
|
|
androidxWebkitVersion = '1.14.0'
|
|
junitVersion = '4.13.2'
|
|
androidxJunitVersion = '1.3.0'
|
|
androidxEspressoCoreVersion = '3.7.0'
|
|
cordovaAndroidVersion = '14.0.1'
|
|
} |