1. Information We Collect and Use1. 我们收集和使用的信息
We process only the information needed to provide the app's core features.我们仅处理为提供核心功能所必要的信息。
| Scenario使用场景 | Information信息类型 | Purpose使用目的 | Handling and Retention处理与保存方式 |
|---|---|---|---|
| Privacy consent status隐私同意状态 | A local flag showing whether the privacy policy has been accepted是否已同意隐私政策的本地标记 | Enter the app and avoid repeatedly showing the consent page进入应用并避免重复弹出同意页面 | Stored locally with SharedPreferences; removed when the app data is cleared or the app is uninstalled通过 SharedPreferences 保存在本机;清除应用数据或卸载应用后删除 |
| Favorites, recent views, and downloads收藏、最近浏览和下载记录 | Wallpaper IDs and local activity records壁纸 ID 与本地使用记录 | Provide favorite lists, recent items, download history, and local management提供收藏列表、最近浏览、下载历史和本地管理能力 | Stored only on the device; can be removed from Profile > Clear Local Records仅保存在设备本地;可在“我的 > 清除本地记录”中删除 |
| Remote content loading远程内容加载 | Basic network logs generated when requesting the manifest and public image assets, such as IP address, request time, requested resource, network status, and basic device system information请求公开内容清单和图片资源时产生的基础网络日志,例如 IP 地址、请求时间、请求资源、网络状态和基础设备系统信息 | Load wallpapers, avatars, and categories; support content delivery, security protection, and troubleshooting加载壁纸、头像和分类;支持内容分发、安全防护与故障排查 | Processed by the content storage and CDN service as needed. The app starts remote content requests only after privacy consent.由内容存储与 CDN 服务在必要范围内处理。应用仅在用户同意隐私政策后开始请求远程内容。 |
| Avatar crop and image compression头像裁剪和图片压缩 | Images that you actively select through the system picker and temporary local cache files你通过系统图片选择器主动选择的图片,以及操作过程中产生的临时本地缓存文件 | Crop, compress, preview, and save images裁剪、压缩、预览和保存图片 | Processed locally and not uploaded; temporary files may be replaced by later operations or removed by the system在本地处理,不上传;临时文件可能被后续操作、系统清理或卸载应用时删除 |
| Download, share, and set wallpaper下载、分享和设置壁纸 | The image file you choose to save, share, or set as wallpaper你选择保存、分享或设置为壁纸的图片文件 | Save to the device image collection, open the Android share sheet, or call the system wallpaper service保存到设备图片集合、调起安卓分享面板或调用系统壁纸服务 | Handled through Android system APIs. If you share to another app, that app handles the file under its own policies.通过安卓系统 API 处理;如果你主动分享到第三方应用,接收方会按其自身规则处理文件 |
| Premium purchases and entitlement checks会员购买与权益校验 | Store purchase receipts/status, anonymous RevenueCat app user identifiers, product identifiers, subscription events, and entitlement status needed to provide Premium access商店购买凭据/状态、匿名 RevenueCat 应用用户标识、商品标识、订阅事件和权益状态等提供会员访问所需的信息 | Retrieve products, process purchases and restores, check the ArtScape Wallpapers Premium entitlement, and provide customer self-service获取商品、处理购买和恢复购买、校验画境壁纸高级会员权益、提供客户自助支持 | Processed by the relevant app store and RevenueCat under their own service terms and privacy practices; retained as needed for purchase verification, fraud prevention, support, and legal compliance由相关应用商店和 RevenueCat 按其服务条款与隐私实践处理;会在购买校验、反欺诈、支持与法律合规所需期限内保存 |
2. Permissions2. 权限说明
ArtScape does not request sensitive permissions at startup. System capabilities are used after you trigger the relevant feature.画境壁纸不会在启动时请求敏感权限。相关系统能力只会在你主动触发对应功能时使用。
- Network access:网络访问: Used to load the remote content manifest and public wallpaper or avatar images.用于加载远程内容清单和公开壁纸/头像图片。
- Set wallpaper:设置壁纸: Used when you choose to set an image as the home screen or lock screen wallpaper.当你选择将图片设为桌面或锁屏壁纸时使用系统壁纸服务。
- Photo selection:图片选择: Avatar crop and image compression use the Android system image picker for files you actively choose.头像裁剪和图片压缩通过安卓系统图片选择器读取你主动选择的文件。
- Image saving:图片保存: Wallpaper downloads, avatar saves, and compressed-image saves are written through Android MediaStore or the app image directory.壁纸下载、头像保存和压缩图片保存会通过 Android MediaStore 或应用图片目录写入。
- File sharing:文件分享: Sharing uses FileProvider and the Android share sheet to grant temporary file access to the selected target app.分享功能通过 FileProvider 和安卓分享面板向你选择的目标应用授予临时文件访问权限。
The current version does not request location, contacts, SMS, phone, calendar, microphone, camera, Bluetooth, or notification permissions.当前版本不请求位置、通讯录、短信、电话、日历、麦克风、相机、蓝牙或通知权限。
3. Third-Party SDKs, Components, and Services3. 第三方 SDK、组件与服务
The current version does not include advertising SDKs, analytics SDKs, crash-monitoring SDKs, or cross-app tracking SDKs. The app uses the following components or system services for core functionality, including purchase infrastructure for Premium access.当前版本不包含广告 SDK、统计分析 SDK、崩溃监控 SDK 或跨应用追踪 SDK。应用使用以下组件或系统服务来提供核心功能,包括会员购买基础设施。
| Name名称 | Type类型 | Purpose用途 | Personal Information Sharing个人信息共享情况 |
|---|---|---|---|
| Flutter / Dart | Application framework应用框架 | Build the app interface and runtime构建应用界面与运行时 | No active sharing不主动共享个人信息 |
| shared_preferences | Local storage component本地存储组件 | Store privacy consent, favorites, recent views, and download records保存隐私同意状态、收藏、最近浏览和下载记录 | No; stored locally不共享;仅本地保存 |
| Android image picker, MediaStore, WallpaperManager, share sheet, and FileProvider安卓图片选择器、MediaStore、WallpaperManager、分享面板与 FileProvider | System APIs系统 API | Select images, save images, set wallpapers, and share files选择图片、保存图片、设置壁纸和分享文件 | Only when you actively use a feature that requires system or target-app file access仅在你主动使用需要系统或目标应用文件访问的功能时发生 |
| Cloudflare R2 public bucket and CDNCloudflare R2 公开存储桶与 CDN | Content storage and delivery service内容存储与分发服务 | Host and deliver wallpapers, avatars, categories, and the remote content manifest托管并分发壁纸、头像、分类和远程内容清单 | Local user images are not uploaded; content requests generate necessary network access logs不会上传本地用户图片;内容请求会产生必要的网络访问日志 |
| RevenueCat | Purchase infrastructure and customer self-service SDK购买基础设施与客户自助服务 SDK | Retrieve products, verify receipts, restore purchases, check entitlement status, and provide Customer Center获取商品、验证凭据、恢复购买、校验权益状态和提供客户中心 | Receives purchase-related identifiers and events required to provide Premium access and subscription management接收提供会员访问和订阅管理所必需的购买相关标识与事件 |
4. Sharing, Transfer, and Disclosure4. 共享、转让与公开披露
We do not share, transfer, or publicly disclose personal information except in these cases:除以下情形外,我们不会共享、转让或公开披露你的个人信息:
- You actively use the system share feature and choose a third-party app as the recipient.你主动使用系统分享功能,并选择第三方应用作为接收方。
- Content storage or CDN providers process necessary network logs for delivery, troubleshooting, and security.内容存储或 CDN 服务商为内容分发、故障排查和安全防护处理必要网络日志。
- Disclosure is required by valid legal, judicial, administrative, or regulatory requests.根据有效的法律、司法、行政或监管要求需要披露。
- You provide separate consent for another specific scenario.你对其他具体场景另行授权或同意。
If a merger, split, acquisition, or asset transfer changes the controller of personal information, we will require the new controller to follow this policy or ask for consent again when required.如果因合并、分立、收购或资产转让导致个人信息处理者发生变化,我们会要求新的处理者继续遵守本政策,或在适用法律要求时重新征得你的同意。
5. Retention and Security5. 保存期限与安全
- Privacy consent, favorites, recent views, and download records remain on the device until you clear local records, clear app data, or uninstall the app.隐私同意状态、收藏、最近浏览和下载记录会保存在设备本地,直到你清除本地记录、清除应用数据或卸载应用。
- Images you choose are used only for local crop, compression, save, share, or wallpaper flows. Temporary cache files may be removed by later operations, the system, or uninstalling the app.你选择的图片仅用于本地裁剪、压缩、保存、分享或设置壁纸流程。临时缓存文件可能被后续操作、系统清理或卸载应用时删除。
- Remote content request logs are retained by the content service provider only as needed for content delivery, security, and troubleshooting.远程内容请求日志由内容服务提供方在内容分发、安全防护和故障排查所需范围内保存。
- We apply reasonable technical and organizational measures to protect information from unauthorized access, disclosure, use, modification, damage, or loss.我们会采取合理的技术与组织措施,保护相关信息免受未经授权的访问、披露、使用、修改、损坏或丢失。
6. Your Choices and Rights6. 你的选择与权利
You can manage your data and choices in these ways:你可以通过以下方式管理数据与选择:
- Use Profile > Clear Local Records to delete favorites, recent views, and download records.在“我的 > 清除本地记录”中删除收藏、最近浏览和下载记录。
- Clear ArtScape app data in Android system settings to remove local consent and local records.在安卓系统设置中清除画境壁纸应用数据,以删除本地同意状态和本地记录。
- Manage app permissions in Android settings or cancel image selection in the system picker.在安卓系统设置中管理权限,或在系统图片选择器中取消选择。
- Contact us at 通过 napsterlong@parxis.top to ask questions, request access, correction, deletion, consent withdrawal, or submit a complaint. 联系我们,咨询、请求访问、更正、删除、撤回同意或提交投诉。
Because the current version does not provide accounts, we do not collect phone numbers, identity numbers, account passwords, or account registration data, and there is no account deletion entry. Subscription cancellation and purchase management are handled through the relevant app store and RevenueCat Customer Center where available.由于当前版本不提供账号系统,我们不收集手机号、身份证号、账号密码或账号注册资料,也没有账号注销入口。订阅取消和购买管理由相关应用商店以及可用时的 RevenueCat Customer Center 处理。
7. Children7. 未成年人保护
ArtScape is not directed to children under 13 and does not knowingly collect children's personal information. Minors should use the app with consent and guidance from a parent or guardian. If a guardian believes a child's personal information has been handled improperly, please contact us and we will respond as required by law.画境壁纸并非面向 13 岁以下儿童设计,也不会故意收集儿童个人信息。未成年人应在父母或监护人同意和指导下使用本应用。如果监护人认为儿童个人信息被不当处理,请联系我们,我们会依法响应。
8. Policy Updates8. 政策更新
We may update this policy when features, legal requirements, or operational practices change. For important changes, we will notify users through in-app prompts, page notices, or other prominent methods. If the purpose, method, or scope of processing changes materially, we will obtain consent again where required.当功能、法律要求或运营实践发生变化时,我们可能更新本政策。对于重要变更,我们会通过应用内提示、页面公告或其他显著方式告知。若处理目的、方式或范围发生实质变化,我们会在适用法律要求时重新征得同意。
9. Contact Us9. 联系我们
If you have questions, complaints, suggestions, or rights requests about this policy or personal information processing, contact us through:如果你对本政策或个人信息处理有疑问、投诉、建议或权利请求,可以通过以下方式联系:
- Controller: Parxis开发者:黄兆龙
- Email: 邮箱:napsterlong@parxis.top
- Product: ArtScape for Android产品:画境壁纸安卓应用
We will respond after receiving and verifying your request within the timeframe required by applicable law.我们会在收到并验证你的请求后,在适用法律要求的期限内进行回复。
Quick Links快速链接
ArtScape website画境壁纸官网 · Terms of Use使用条款 · Contact maintainer联系维护者