-
Notifications
You must be signed in to change notification settings - Fork 57
/
templates.json
130 lines (116 loc) · 3.76 KB
/
templates.json
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[
{
"path": "iOSNativeSwiftTemplate",
"description": "Swift application using MobileSync, SwiftUI and Combine",
"appType": "native_swift",
"platforms": ["ios"]
},
{
"path": "iOSNativeSwiftPackageManagerTemplate",
"description": "Swift application using MobileSync, SwiftUI and Combine (pulled in using Swift Package Manager)",
"appType": "native_swift",
"platforms": ["ios"]
},
{
"path": "iOSNativeSwiftEncryptedNotificationTemplate",
"description": "Basic Swift application with notification service extension",
"appType": "native_swift",
"platforms": ["ios"]
},
{
"path": "iOSNativeTemplate",
"description": "Basic Objective-C application",
"appType": "native",
"platforms": ["ios"]
},
{
"path": "AndroidNativeKotlinTemplate",
"description": "Basic Kotlin application",
"appType": "native_kotlin",
"platforms": ["android"]
},
{
"path": "AndroidNativeLoginTemplate",
"description": "Sample application with a native login screen created with Jetpack Compose",
"appType": "native_kotlin",
"platforms": ["android"]
},
{
"path": "AndroidNativeTemplate",
"description": "Basic Java application",
"appType": "native",
"platforms": ["android"]
},
{
"path": "HybridLocalTemplate",
"description": "Basic hybrid local application",
"appType": "hybrid_local",
"platforms": ["android", "ios"]
},
{
"path": "HybridRemoteTemplate",
"description": "Basic hybrid remote application",
"appType": "hybrid_remote",
"platforms": ["android", "ios"]
},
{
"path": "HybridLwcTemplate",
"description": "Basic hybrid application using Lightning Web Components",
"appType": "hybrid_lwc",
"platforms": ["android", "ios"]
},
{
"path": "ReactNativeTemplate",
"description": "Basic React Native application",
"appType": "react_native",
"platforms": ["android", "ios"]
},
{
"path": "ReactNativeDeferredTemplate",
"description": "Basic React Native application that uses deferred login",
"appType": "react_native",
"platforms": ["android", "ios"]
},
{
"path": "ReactNativeTypeScriptTemplate",
"description": "Basic React Native application written in TypeScript",
"appType": "react_native",
"platforms": ["android", "ios"]
},
{
"path": "AndroidIDPTemplate",
"description": "Sample Kotlin Identity Provider application",
"appType": "native_kotlin",
"platforms": ["android"]
},
{
"path": "iOSIDPTemplate",
"description": "Sample Swift Identity Provider application",
"appType": "native_swift",
"platforms": ["ios"]
},
{
"path": "MobileSyncExplorerSwift",
"description": "Sample Swift application using MobileSync data framework",
"appType": "native_swift",
"platforms": ["ios"]
},
{
"path": "MobileSyncExplorerReactNative",
"description": "Sample application using MobileSync data framework",
"appType": "react_native",
"platforms": ["android", "ios"]
},
{
"path": "MobileSyncExplorerKotlinTemplate",
"description": "Sample Kotlin application using MobileSync data framework",
"appType": "native_kotlin",
"platforms": ["android"]
},
{
"path": "iOSNativeLoginTemplate",
"description": "Sample application with a native login screen written in SwiftUI.",
"appType": "native_swift",
"platforms": ["ios"]
}
]