2023-04-08 11:41:02 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
2023-04-08 18:53:51 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
|
2023-04-08 11:41:02 +02:00
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:theme="@style/Theme.StudIPTimetable"
|
2023-04-30 22:47:59 +02:00
|
|
|
tools:targetApi="33"
|
|
|
|
|
android:localeConfig="@xml/locales_config">
|
2023-04-27 20:27:42 +02:00
|
|
|
|
2023-04-08 11:41:02 +02:00
|
|
|
<activity
|
|
|
|
|
android:name=".activity.MainActivity"
|
2023-04-29 22:26:26 +02:00
|
|
|
android:windowSoftInputMode="adjustPan"
|
2023-04-08 11:41:02 +02:00
|
|
|
android:exported="true"
|
2023-05-01 09:51:06 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2023-04-08 11:41:02 +02:00
|
|
|
android:theme="@style/Theme.StudIPTimetable">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2023-04-27 20:27:42 +02:00
|
|
|
|
2023-04-12 18:58:10 +02:00
|
|
|
<activity
|
|
|
|
|
android:name=".activity.FetcherActivity"
|
|
|
|
|
android:exported="false"
|
2023-05-01 09:51:06 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2023-04-12 18:58:10 +02:00
|
|
|
android:theme="@style/Theme.StudIPTimetable">
|
|
|
|
|
</activity>
|
2023-04-30 22:47:59 +02:00
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".activity.ImageActivity"
|
|
|
|
|
android:exported="false"
|
2023-05-01 09:51:06 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2023-04-30 22:47:59 +02:00
|
|
|
android:theme="@style/Theme.StudIPTimetable">
|
|
|
|
|
</activity>
|
2023-04-08 11:41:02 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|