sync
This commit is contained in:
shenzuqiang 2026-05-21 11:29:58 +08:00
parent b06db40dc6
commit 0fb4127d7a
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ plugins {
android { android {
namespace = "com.img.rabbit" namespace = "com.img.rabbit"
compileSdk = 36 compileSdk = 37
buildFeatures { buildFeatures {
compose = true compose = true
@ -37,7 +37,7 @@ android {
defaultConfig { defaultConfig {
applicationId = "com.img.rabbit" applicationId = "com.img.rabbit"
minSdk = 24 minSdk = 24
targetSdk = 36 targetSdk = 37
versionCode = 2 versionCode = 2
versionName = "1.0.1" versionName = "1.0.1"
multiDexEnabled = true multiDexEnabled = true

View File

@ -3,7 +3,7 @@
xmlns:tools="http://schemas.android.com/tools"> xmlns:tools="http://schemas.android.com/tools">
<!-- 在Android14及以上版本读取SelectedPhotoAccess需要添加READ_MEDIA_VISUAL_USER_SELECTED权限 --> <!-- 在Android14及以上版本读取SelectedPhotoAccess需要添加READ_MEDIA_VISUAL_USER_SELECTED权限 -->
<uses-permission android:name="android.permission.READ_MEDIA_VISUAL_USER_SELECTED" /> <uses-permission android:name="android.permission.READ_MEDIA_VISUAL_USER_SELECTED" />
<!-- 写入外部存储权限,用于保存拍照后的图片或者下载文件主要兼容Android 13及以下版本Android13以上高版本不需要但低版本必须 --> <!-- 写入外部存储权限,用于截长图保存主要兼容Android 13及以下版本Android13以上高版本不需要但低版本必须 -->
<uses-permission android:name = "android.permission.WRITE_EXTERNAL_STORAGE" <uses-permission android:name = "android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="32" android:maxSdkVersion="32"
tools:ignore="ScopedStorage" /> tools:ignore="ScopedStorage" />