Last active 1729802439

example altstore source

ExampleSource.json Raw
1{
2 "name": "My Example Source",
3 "subtitle": "All my apps in one place.",
4 "description": "Welcome to my source! Here you'll find all of my apps.",
5 "iconURL": "https://f000.backblazeb2.com/file/rileytestut/ExampleSource/OctoSource.png",
6 "headerURL": "https://f000.backblazeb2.com/file/rileytestut/ExampleSource/OceanHeader.png",
7 "website": "https://example.com",
8 "tintColor": "#4185A9",
9 "featuredApps": [
10 "com.example.myapp",
11 "com.example.anotherapp"
12 ],
13 "apps": [
14 {
15 "name": "My Example App",
16 "bundleIdentifier": "com.example.myapp",
17 "developerName": "Example Developer",
18 "subtitle": "An awesome app.",
19 "localizedDescription": "This is an awesome app only available on AltStore.",
20 "iconURL": "https://f000.backblazeb2.com/file/rileytestut/ExampleSource/FishApp.png",
21 "tintColor": "#5CA399",
22 "screenshots": [
23 "https://example.com/myapp_portrait_screenshot1.png",
24 "https://example.com/myapp_portrait_screenshot2.png",
25 {
26 "imageURL": "https://example.com/myapp_landscape_screenshot.png",
27 "width": 2556,
28 "height": 1179
29 }
30 ],
31 "versions": [
32 {
33 "version": "1.1",
34 "date": "2022-05-01T09:00:00-08:00",
35 "size": 20000000,
36 "downloadURL": "https://example.com/myapp_v1.1.ipa",
37 "localizedDescription": "New features and bug fixes.",
38 "minOSVersion": "12.0"
39 },
40 {
41 "version": "1.0",
42 "date": "2022-03-16T07:00:00-08:00",
43 "size": 10000000,
44 "downloadURL": "https://example.com/myapp_v1.0.ipa",
45 "localizedDescription": "Initial release."
46 }
47 ],
48 "appPermissions": {
49 "entitlements": [
50 "com.apple.security.application-groups",
51 "com.apple.developer.siri"
52 ],
53 "privacy": {
54 "NSPhotoLibraryUsageDescription": "App saves photos to your Photo Library.",
55 "NSCameraUsageDescription": "App uses camera to take photos.",
56 "NSMicrophoneUsageDescription": "App uses microphone to record video."
57 }
58 }
59 },
60 {
61 "name": "Another Example App",
62 "bundleIdentifier": "com.example.anotherapp",
63 "developerName": "Example Developer",
64 "subtitle": "Another awesome app.",
65 "localizedDescription": "This is another awesome app only available on AltStore.",
66 "iconURL": "https://f000.backblazeb2.com/file/rileytestut/ExampleSource/SharkApp.png",
67 "tintColor": "#3660A2",
68 "screenshots": {
69 "iphone": [
70 "https://example.com/anotherapp_portrait_1.png",
71 "https://example.com/anotherapp_portrait_2.png",
72 {
73 "imageURL": "https://example.com/anotherapp_landscape.png",
74 "width": 2556,
75 "height": 1179
76 }
77 ],
78 "ipad": [
79 {
80 "imageURL": "https://example.com/anotherapp_ipad_portrait.png",
81 "width": 1668,
82 "height": 2388
83 },
84 {
85 "imageURL": "https://example.com/anotherapp_ipad_landscape.png",
86 "width": 2388,
87 "height": 1668
88 }
89 ]
90 },
91 "versions": [
92 {
93 "version": "1.2",
94 "date": "2022-06-21T09:00:00-08:00",
95 "downloadURL": "https://example.com/anotherapp_v1.2.ipa",
96 "localizedDescription": "Bug fixes and performance improvements.",
97 "size": 81514,
98 "minOSVersion": "13.0"
99 },
100 {
101 "version": "1.1",
102 "date": "2022-04-15T10:00:00-08:00",
103 "downloadURL": "https://example.com/anotherapp_v1.1.ipa",
104 "localizedDescription": "New features!",
105 "size": 81364,
106 "minOSVersion": "13.0",
107 "maxOSVersion": "16.3"
108 },
109 {
110 "version": "1.0",
111 "date": "2022-02-02T07:00:00-08:00",
112 "downloadURL": "https://example.com/anotherapp_v1.0.ipa",
113 "localizedDescription": "Initial release.",
114 "size": 79821
115 }
116 ],
117 "appPermissions": {
118 "entitlements": [
119 "com.apple.developer.healthkit",
120 "com.apple.developer.game-center"
121 ],
122 "privacy": {
123 "NSLocalNetworkUsageDescription": "App scans the local network for nearby computers."
124 }
125 }
126 }
127 ],
128 "news": [
129 {
130 "title": "New Feature Announcement",
131 "identifier": "new_feature",
132 "caption": "Introducing a new feature in AltStore!",
133 "date": "2023-03-15",
134 "tintColor": "#5CA399",
135 "imageURL": "https://example.com/new_feature_image.png",
136 "notify": true,
137 "url": "https://example.com/new_feature_details"
138 },
139 {
140 "title": "App Update Available",
141 "identifier": "app_update",
142 "caption": "An update is available for My Example App.",
143 "date": "2023-03-10T10:00:00-07:00",
144 "tintColor": "#3660A2",
145 "imageURL": "https://example.com/app_update_image.png",
146 "notify": false,
147 "appID": "com.example.myapp"
148 }
149 ]
150}