-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
36 lines (29 loc) · 1.18 KB
/
AndroidManifest.xml
File metadata and controls
36 lines (29 loc) · 1.18 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest
package="org.researchstack.backboneapp"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:name=".BackboneApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.BackboneApp">
<activity android:name="org.researchstack.backboneapp.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name="org.researchstack.backbone.interop.ViewBackboneInteropTaskActivity"
android:windowSoftInputMode="adjustResize"
android:theme="@style/Theme.BackboneApp.Survey"
/>
<activity
android:name="org.researchstack.backbone.ui.ViewWebDocumentActivity"
android:label="@string/app_name"
android:theme="@style/Theme.BackboneApp.Survey"
/>
</application>
</manifest>