Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

Rev 28 | Rev 45 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
28 gabriel 1
<?xml version="1.0" encoding="utf-8"?>
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
    package="com.cesams.twogetskills" >
4
 
5
    <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
6
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
7
    <uses-permission android:name="android.permission.USE_CREDENTIALS" />
8
    <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
9
    <uses-permission android:name="android.permission.READ_SYNC_STATS" />
10
    <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
11
    <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
12
    <uses-permission android:name="android.permission.INTERNET" />
13
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
14
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
15
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
16
    <uses-permission android:name="android.permission.WAKE_LOCK" />
17
 
18
    <application
19
        android:allowBackup="false"
20
        android:allowClearUserData="true"
21
        android:icon="@mipmap/ic_launcher"
22
        android:label="@string/app_name"
23
        android:networkSecurityConfig="@xml/network_security_config"
24
        android:roundIcon="@mipmap/ic_launcher"
25
        android:supportsRtl="true"
26
        android:theme="@style/Theme.Splash"
27
        android:usesCleartextTraffic="true" >
28
 
29 efrain 29
        <meta-data
30
            android:name="firebase_messaging_auto_init_enabled"
31
            android:value="false" />
28 gabriel 32
 
33
        <meta-data
29 efrain 34
            android:name="firebase_analytics_collection_enabled"
35
            android:value="false" />
36
 
37
        <meta-data
28 gabriel 38
            android:name="firebase_performance_logcat_enabled"
39
            android:value="true" />
40
 
41
        <receiver
42
            android:name=".receiver.ConnectivityReceiver"
43
            android:exported="false" >
44
            <intent-filter>
45
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
46
                <action android:name="android.net.wifi.WIFI_STATE_CHANGED" />
47
            </intent-filter>
48
        </receiver>
49
        <!--
50
    <receiver
51
                android:name=".receiver.InternalReceiver"
52
                android:exported="false">
53
                <intent-filter>
54
                    <action android:name="twogetskills.cesams.com.fcm.type.notification" />
55
                    <action android:name="twogetskills.cesams.com.fcm.type.token" />
56
                    <action android:name="twogetskills.cesams.com.fcm.type.command" />
57
                    <action android:name="twogetskills.cesams.com.type.syncToServerOrCheckChanges" />
58
 
59
            </intent-filter>
60
        </receiver>
61
        -->
62
<!-- android:configChanges="keyboard|keyboardHidden|orientation|screenSize|layoutDirection|screenLayout|smallestScreenSize|uiMode" -->
63
        <activity
64
            android:name=".activity.QuizActivity"
65
            android:label="@string/title_activity_quiz"
66
            android:screenOrientation="portrait"
67
            android:theme="@style/AppTheme.NoActionBar" />
68
        <activity
69
            android:name=".activity.TextActivity"
70
            android:configChanges="keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize|uiMode"
71
            android:screenOrientation="landscape"
72
            android:theme="@style/AppTheme.NoActionBar" />
73
        <activity
74
            android:name=".activity.PdfActivity"
75
            android:configChanges="keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize|uiMode"
76
            android:screenOrientation="landscape"
77
            android:theme="@style/AppTheme.NoActionBar" />
78
        <activity
79
            android:name=".activity.VideoAudioActivity"
80
            android:configChanges="orientation|screenSize|layoutDirection"
81
            android:theme="@style/AppTheme.NoActionBar" />
82
        <activity
83
            android:name=".activity.MainActivity"
84
            android:configChanges="keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize|uiMode"
85
            android:exported="true"
86
            android:label="@string/app_name"
87
            android:launchMode="singleTask"
88
            android:screenOrientation="portrait"
89
            android:theme="@style/AppTheme.NoActionBar" >
90
        </activity>
91
        <activity
92
            android:name=".activity.SplashActivity"
93
            android:exported="true"
94
            android:label="@string/app_name" >
95
            <intent-filter>
96
                <action android:name="android.intent.action.MAIN" />
97
 
98
                <category android:name="android.intent.category.LAUNCHER" />
99
            </intent-filter>
100
        </activity>
101
 
29 efrain 102
        <!-- android:directBootAware="true" -->
28 gabriel 103
        <service
104
            android:name=".service.FcmMessagingService"
105
            android:exported="false" >
106
            <intent-filter>
107
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
108
            </intent-filter>
109
        </service>
110
 
111
        <!--     <meta-data
112
                 android:name="firebase_messaging_auto_init_enabled"
113
                 android:value="false" />
114
             <meta-data
115
                 android:name="firebase_analytics_collection_enabled"
116
                 android:value="false" />
117
              android:syncable="true" -->
118
        <provider
119
            android:name=".sync.SyncContentProvider"
120
            android:authorities="com.cesams.twogetskills"
121
            android:exported="false" />
122
 
123
        <service
124
            android:name=".sync.SyncService"
125
            android:exported="false" >
126
            <intent-filter>
127
                <action android:name="android.content.SyncAdapter" />
128
            </intent-filter>
129
 
130
            <meta-data
131
                android:name="android.content.SyncAdapter"
132
                android:resource="@xml/syncadapter" />
133
        </service>
134
        <service
135
            android:name=".sync.AuthenticatorService"
136
            android:exported="false" >
137
            <intent-filter>
138
                <action android:name="android.accounts.AccountAuthenticator" />
139
            </intent-filter>
140
 
141
            <meta-data
142
                android:name="android.accounts.AccountAuthenticator"
143
                android:resource="@xml/authenticator" />
144
        </service>
145
 
146
        <meta-data
147
            android:name="preloaded_fonts"
148
            android:resource="@array/preloaded_fonts" />
149
    </application>
150
 
1 gabriel 151
</manifest>