-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_in_one.txt
97 lines (61 loc) · 4.02 KB
/
all_in_one.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
File Header (file_header.txt):
{
"meta": {
"ListGenerated": "${now}",
"TotalNumberOfInstalledApps": "${count}"
},
Body (body.txt):
"App": {
"@id": "${packagename}",
"Name": "${displayname}",
"Comment": "${comment}",
"DataDirectory": "${datadir}",
"FirstInstalled": "${firstinstalled}",
"LastUpdated": "${lastupdated}",
"MarketID": "${marketid}",
"MarketLink": "market://details?id=${packagename}",
"PackageName": "${packagename}",
"Tags": "${tags}",
"TargetSDK": "${targetsdk}",
"UID": "${uid}",
"Version": "${version}",
"VersionCode": "${versioncode}",
"www": "${source}",
"GoogleStore": "https://play.google.com/store/apps/details?id=${packagename}",
"FDroid": "https://f-droid.org/repository/browse/?fdid=${packagename}",
"SearchGoogle": "https://www.google.com/search?q=${packagename}",
"DuckDuckGo": "https://duckduckgo.com/?q=${packagename}+\"${displayname}\""
},
File Footer (file_footer.txt):
"Descriptions": {
"Description_Comment": "Whatever was entered as a comment in the \"Annotations\" screen.",
"Description_DataDirectory": "Directory that was assigned to the app by the Android system for storing it's private files.",
"Description_FirstInstalled": "The time (formated according to the system's locale setting) when the app was installed.",
"Description_LastUpdated": "The time (formated according to the system's locale setting) when the app was last updated.",
"Description_ListGenerated": "The current time (when the list was created), formated according to the system's locale setting (Only available for headers/footers).",
"Description_MarketID": "Identifier of the market app that installed the app. For Google Play, this is 'com.google.vending'. Not all market apps set this. Sideloaded apps will always have an empty id.",
"Description_MarketLink": [],
"Description_Name": "This is how the app identifies itself to the user. Unlike the packagename, the displayname is not required to be unique and an app may even have several displaynames (e.g. when translated into different languages).",
"Description_PackageName": "This is the unique key by which an app is identified. For example, the key for List My Apps is 'de.onyxbits.listmyapps'. The packagename plays a major role in finding apps on markets.",
"Description_Tags": "The tags, the app was annotated with.",
"Description_TargetSDK": "Version number of the Android platform, the app was designed to run on. The app may run on lower platform levels, but is guaranteed to run on higher ones.",
"Description_TotalNumberOfInstalledApps": "Number of apps in the list (Only available for headers/footers).",
"Description_UID": "The user id that was assigned to the app by the Android system upon installation.",
"Description_Version": "The version label of the app as it is shown to the user (e.g. a string like 'v2.1').",
"Description_VersionCode": "Numerical (internal) version name of the app. The general contract is: the latest release has the highest number.",
"Description_www": "A HTTP/HTTPS URL that will link to where the app was installed from (or Google search if no source could be determined).",
"Description_GoogleStore": [],
"Description_FDroid": [],
"Description_SearchGoogle": [],
"Description_DuckDuckGo": []
},
"meta_2": {
"ListCreatedWith": "List My Apps",
"ListAppStoreLink": "https://play.google.com/store/apps/details?id=de.onyxbits.listmyapps",
"ListAppHomepageLink": "http://www.onyxbits.de/listmyapps",
"ListAppDiscussionThreadLink": "http://forum.xda-developers.com/showthread.php?t=2460266",
"TemplateSource": "https://github.com/auberginehill/list-my-apps-template-json",
"ListGenerated_2": "${now}",
"TotalNumberOfInstalledApps_2": "${count}"
}
}