|
63 | 63 | <uses-feature android:glEsVersion="0x00020000" android:required="false"/>
|
64 | 64 |
|
65 | 65 | <application
|
| 66 | + android:networkSecurityConfig="@xml/network_security_config" |
66 | 67 | android:name="org.qpython.qpy.main.app.App"
|
67 | 68 | android:allowBackup="true"
|
68 | 69 | android:hardwareAccelerated="true"
|
|
71 | 72 | android:largeHeap="true"
|
72 | 73 | android:supportsRtl="true"
|
73 | 74 | android:theme="@style/AppTheme">
|
| 75 | + <uses-library android:name="org.apache.http.legacy" android:required="false"/> |
74 | 76 |
|
75 | 77 | <meta-data
|
76 | 78 | android:name="com.google.firebase.messaging.default_notification_icon"
|
|
79 | 81 | <service android:name=".main.service.QPyService"/>
|
80 | 82 | <service android:name="org.qpython.qsl4a.QPyScriptService"/>
|
81 | 83 | <service android:name=".main.service.FTPServerService"/>
|
82 |
| - <service |
83 |
| - android:name=".main.service.MyFirebaseMessagingService" |
84 |
| - tools:ignore="ExportedService"> |
85 |
| - <intent-filter> |
86 |
| - <action android:name="com.google.firebase.MESSAGING_EVENT"/> |
87 |
| - </intent-filter> |
88 |
| - </service> |
89 |
| - <service |
90 |
| - android:name=".main.service.MyFirebaseInstanceIDService" |
91 |
| - tools:ignore="ExportedService"> |
92 |
| - <intent-filter> |
93 |
| - <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/> |
94 |
| - </intent-filter> |
95 |
| - </service> |
96 |
| - |
97 | 84 | <activity
|
98 | 85 | android:name=".main.activity.SignInActivity"
|
99 | 86 | android:launchMode="singleTask"/>
|
| 87 | + <activity |
| 88 | + android:name="org.renpy.android.PythonSDLActivity" |
| 89 | + android:hardwareAccelerated="true" |
| 90 | + android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode|orientation" |
| 91 | + android:launchMode="singleTask" |
| 92 | + android:process=":python" |
| 93 | + android:screenOrientation="user" |
| 94 | + android:theme="@style/AppTheme" |
| 95 | + android:windowSoftInputMode="stateAlwaysHidden"> |
| 96 | + </activity> |
100 | 97 |
|
101 | 98 | <activity
|
102 | 99 | android:name="org.qpython.qpylib.MPyApi"
|
|
126 | 123 | android:resource="@xml/shortcuts"/>
|
127 | 124 | </activity>
|
128 | 125 |
|
129 |
| - |
130 | 126 | <activity
|
131 | 127 | android:name="org.qpython.qpy.main.activity.QWebViewActivity"
|
132 | 128 | android:label="@string/browser">
|
|
148 | 144 | <intent-filter>
|
149 | 145 | <action android:name="android.intent.action.SEND"/>
|
150 | 146 | <category android:name="android.intent.category.DEFAULT"/>
|
151 |
| - |
152 | 147 | <data android:mimeType="text/plain"/>
|
153 | 148 | <data android:mimeType="image/*"/>
|
154 | 149 | </intent-filter>
|
|
180 | 175 | <!--<action android:name="android.intent.action.SEND"/>-->
|
181 | 176 | <action android:name="android.intent.action.VIEW"/>
|
182 | 177 | <category android:name="android.intent.category.DEFAULT"/>
|
183 |
| - |
| 178 | + <category android:name="android.intent.category.BROWSABLE" /> |
184 | 179 | <data android:mimeType="text/*"/>
|
185 | 180 | <data android:scheme="file"/>
|
186 | 181 | </intent-filter>
|
187 | 182 |
|
188 | 183 | <intent-filter>
|
189 | 184 | <action android:name="android.intent.action.VIEW"/>
|
190 | 185 | <category android:name="android.intent.category.DEFAULT"/>
|
191 |
| - |
| 186 | + <category android:name="android.intent.category.BROWSABLE" /> |
192 | 187 | <data android:scheme="content"/>
|
193 | 188 | <data android:host="*"/>
|
194 | 189 | <data android:mimeType="*/*"/>
|
|
306 | 301 | android:name="org.qpython.qpy.console.WindowList"
|
307 | 302 | android:label="@string/window_list"
|
308 | 303 | android:theme="@style/ConsoleTheme"/>
|
309 |
| - |
310 |
| - |
311 | 304 | <activity
|
312 | 305 | android:name="org.qpython.qpy.console.shortcuts.AddShortcut"
|
313 | 306 | android:configChanges="orientation|keyboard|keyboardHidden"
|
|
346 | 339 | </intent-filter>
|
347 | 340 | </activity>
|
348 | 341 |
|
349 |
| - |
350 | 342 | <activity android:name="org.qpython.qpy.plugin.activity.PluginManagerActivity"/>
|
351 | 343 | <activity android:name="org.qpython.qpy.plugin.activity.LocalPluginInstallActivity"/>
|
352 | 344 |
|
353 |
| - |
354 | 345 | <!--zxing-->
|
355 | 346 | <activity android:name="org.qpython.qpy.main.activity.QrCodeActivity"/>
|
356 | 347 | <activity
|
|
388 | 379 | android:name=".main.activity.NotebookListActivity"
|
389 | 380 | android:configChanges="keyboardHidden|orientation|screenSize"/>
|
390 | 381 |
|
| 382 | + <service |
| 383 | + android:name=".main.service.MyFirebaseMessagingService" |
| 384 | + tools:ignore="ExportedService"> |
| 385 | + <intent-filter> |
| 386 | + <action android:name="com.google.firebase.MESSAGING_EVENT"/> |
| 387 | + </intent-filter> |
| 388 | + </service> |
| 389 | + <service |
| 390 | + android:name=".main.service.MyFirebaseInstanceIDService" |
| 391 | + tools:ignore="ExportedService"> |
| 392 | + <intent-filter> |
| 393 | + <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/> |
| 394 | + </intent-filter> |
| 395 | + </service> |
391 | 396 | </application>
|
392 | 397 |
|
393 | 398 | <meta-data
|
|
0 commit comments