-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
58 lines (54 loc) · 2.53 KB
/
AndroidManifest.xml
File metadata and controls
58 lines (54 loc) · 2.53 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.galtashma.parsedashboard">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher_circle"
android:roundIcon="@mipmap/ic_launcher_circle"
android:name=".ParseDashboardApplication"
android:networkSecurityConfig="@xml/network_security_config"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:replace="android:icon">
<activity
android:name=".screens.AppsMenuParseActivity"
android:label="@string/title_activity_main"
android:theme="@style/AppTheme.NoActionBar.Dark"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".screens.SingleAppParseActivity"
android:label="@string/app_name"
android:parentActivityName=".screens.AppsMenuParseActivity"
android:theme="@style/AppTheme.NoActionBar">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.galtashma.parsedashboard.screens.AppsMenuParseActivity" />
</activity>
<activity
android:name=".screens.SingleClassParseActivity"
android:label="@string/title_activity_parse_table"
android:parentActivityName=".screens.SingleAppParseActivity"
android:theme="@style/AppTheme.NoActionBar">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.galtashma.parsedashboard.screens.SingleAppParseActivity" />
</activity>
<activity
android:name=".screens.SingleObjectParseActivity"
android:label="@string/title_activity_parse_object"
android:parentActivityName=".screens.SingleClassParseActivity"
android:theme="@style/AppTheme.NoActionBar">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.galtashma.parsedashboard.screens.SingleClassParseActivity" />
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>