appmetadata and readme
Browse files
AppMetadata.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
mobileviews_index_0-291197.csv → MobileViews_index_0-291197.csv
RENAMED
File without changes
|
mobileviews_index_300000-522301.csv → MobileViews_index_300000-522301.csv
RENAMED
File without changes
|
README.md
ADDED
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# MobileViews: A Large-Scale Mobile GUI Dataset
|
2 |
+
|
3 |
+
**MobileViews** is a large-scale dataset designed to support research in mobile user interface (UI) analysis and mobile agents. It contains over **600,000** mobile UI screenshot-view hierarchy (VH) pairs collected from approximately **20,000 apps** on the Google Play Store.
|
4 |
+
|
5 |
+
## Dataset Overview
|
6 |
+
|
7 |
+
The dataset consists of multiple `.tar.gz` files containing screenshot-VH pairs and corresponding CSV index files that map each screenshot to its VH:
|
8 |
+
|
9 |
+
- `MobileViews_0-291197.tar.gz` and `MobileViews_index_0-291197.csv`: The first set of screenshot-VH pairs, containing IDs from 0 to 291197.
|
10 |
+
- `MobileViews_300000-522301.tar.gz` and `MobileViews_index_300000-522301.csv`: The second set of screenshot-VH pairs, containing IDs from 300000 to 522301.
|
11 |
+
- `AppMetadata.csv`: App metadata for **15,000 apps** from the Google Play Store, retrieved in **June 2024**.
|
12 |
+
|
13 |
+
### Index CSV Columns
|
14 |
+
|
15 |
+
Each index CSV file contains the following columns, mapping each screenshot to its corresponding view hierarchy:
|
16 |
+
|
17 |
+
| Column | Description |
|
18 |
+
|--------------|-------------------------------------------|
|
19 |
+
| `Image File` | Filename of the screenshot (e.g., 0.jpg) |
|
20 |
+
| `JSON File` | Filename of the view hierarchy (e.g., 0.json) |
|
21 |
+
|
22 |
+
**Example:**
|
23 |
+
```csv
|
24 |
+
Image File,JSON File
|
25 |
+
300000.jpg,300000.json
|
26 |
+
300001.jpg,300001.json
|
27 |
+
300002.jpg,300002.json
|
28 |
+
```
|
29 |
+
|
30 |
+
Each `.tar.gz` file contains both the screenshots (JPG) and view hierarchy files (JSON).
|
31 |
+
|
32 |
+
### AppMetadata.csv Columns
|
33 |
+
|
34 |
+
The `AppMetadata.csv` file contains detailed information about each app. The columns are as follows:
|
35 |
+
|
36 |
+
| Column | Description |
|
37 |
+
|---------------------|------------------------------------------------------------------|
|
38 |
+
| `title` | App title |
|
39 |
+
| `installs` | Number of installs |
|
40 |
+
| `minInstalls` | Minimum number of installs |
|
41 |
+
| `realInstalls` | Real number of installs |
|
42 |
+
| `score` | App score (rating) |
|
43 |
+
| `ratings` | Number of ratings |
|
44 |
+
| `reviews` | Number of reviews |
|
45 |
+
| `histogram` | Rating distribution |
|
46 |
+
| `price` | App price |
|
47 |
+
| `free` | Indicates if the app is free (True/False) |
|
48 |
+
| `offersIAP` | Offers in-app purchases (True/False) |
|
49 |
+
| `inAppProductPrice` | In-app product price |
|
50 |
+
| `developer` | Developer name |
|
51 |
+
| `developerId` | Developer ID |
|
52 |
+
| `genre` | App genre |
|
53 |
+
| `genreId` | Genre ID |
|
54 |
+
| `categories` | App categories |
|
55 |
+
| `contentRating` | Content rating (e.g., Everyone, Teen) |
|
56 |
+
| `adSupported` | Indicates if the app is ad-supported (True/False) |
|
57 |
+
| `containsAds` | Indicates if the app contains ads (True/False) |
|
58 |
+
| `released` | App release date |
|
59 |
+
| `lastUpdatedOn` | Date of the latest update |
|
60 |
+
| `appId` | Unique app identifier |
|
61 |
+
|
62 |
+
|
63 |
+
## How to Use
|
64 |
+
|
65 |
+
1. Download the dataset files (`.tar.gz` and `.csv`).
|
66 |
+
2. Extract the `.tar.gz` files to access the screenshot-VH pairs:
|
67 |
+
```bash
|
68 |
+
# Extract the first set of data
|
69 |
+
tar -xzvf MobileViews_0-291197.tar.gz
|
70 |
+
|
71 |
+
# Extract the second set of data
|
72 |
+
tar -xzvf MobileViews_300000-522301.tar.gz
|
73 |
+
```
|
74 |
+
3. Use the corresponding index CSV file to match each pair based on their IDs.
|
75 |
+
|
76 |
+
|
77 |
+
## Citation
|
78 |
+
|
79 |
+
|
80 |
+
```
|
81 |
+
@misc{gao2024mobileviewslargescalemobilegui,
|
82 |
+
title={MobileViews: A Large-Scale Mobile GUI Dataset},
|
83 |
+
author={Longxi Gao and Li Zhang and Shihe Wang and Shangguang Wang and Yuanchun Li and Mengwei Xu},
|
84 |
+
year={2024},
|
85 |
+
eprint={2409.14337},
|
86 |
+
archivePrefix={arXiv},
|
87 |
+
primaryClass={cs.HC},
|
88 |
+
url={https://arxiv.org/abs/2409.14337},
|
89 |
+
}
|
90 |
+
```
|