This repository has been archived by the owner on Feb 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
add_to_app_manifest.xml
64 lines (64 loc) · 3.1 KB
/
add_to_app_manifest.xml
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
<activity
android:name="io.particle.android.sdk.devicesetup.ui.DiscoverDeviceActivity"
android:label="@string/title_activity_discover_device"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar"
android:windowSoftInputMode="stateHidden" />
<activity
android:name="io.particle.android.sdk.devicesetup.ui.SelectNetworkActivity"
android:label="@string/title_activity_select_network"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar"
android:windowSoftInputMode="stateHidden" />
<activity
android:name="io.particle.android.sdk.devicesetup.ui.PasswordEntryActivity"
android:label="@string/title_activity_password_entry"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar"
android:windowSoftInputMode="adjustResize|stateVisible" />
<activity
android:name="io.particle.android.sdk.devicesetup.ui.ConnectingActivity"
android:label="@string/title_activity_connecting"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar"
android:windowSoftInputMode="stateHidden" />
<activity
android:name="io.particle.android.sdk.devicesetup.ui.SuccessActivity"
android:label="@string/title_activity_success"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar"
android:windowSoftInputMode="stateHidden" />
<activity
android:name="io.particle.android.sdk.utils.ui.WebViewActivity"
android:label="@string/title_activity_web_view"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar" />
<activity
android:name="io.particle.android.sdk.devicesetup.ui.GetReadyActivity"
android:label="@string/title_activity_get_ready"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar" />
<activity
android:name="io.particle.android.sdk.devicesetup.ui.ManualNetworkEntryActivity"
android:label="@string/title_activity_manual_network_entry"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar"
android:windowSoftInputMode="adjustResize|stateVisible" />
<activity
android:name="io.particle.android.sdk.accountsetup.CreateAccountActivity"
android:label="@string/title_activity_create_account"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar"
android:windowSoftInputMode="adjustResize|stateHidden" />
<activity
android:name="io.particle.android.sdk.accountsetup.LoginActivity"
android:label="@string/title_activity_login"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar"
android:windowSoftInputMode="adjustResize|stateHidden" />
<activity
android:name="io.particle.android.sdk.accountsetup.PasswordResetActivity"
android:label="@string/title_activity_password_reset"
android:screenOrientation="portrait"
android:theme="@style/ParticleSetupTheme.NoActionBar"
android:windowSoftInputMode="adjustResize|stateVisible" />