2023-02-06 13:44:27 -06: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-09-09 16:09:22 -06:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2023-02-06 13:44:27 -06:00
|
|
|
<application
|
|
|
|
|
android:name=".MyApplication"
|
|
|
|
|
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.Isolaatti"
|
2023-07-15 20:58:57 -06:00
|
|
|
android:usesCleartextTraffic="true"
|
2023-02-06 13:44:27 -06:00
|
|
|
tools:targetApi="31">
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:exported="true"
|
2023-07-15 20:58:57 -06:00
|
|
|
android:theme="@style/Theme.Isolaatti.Splash">
|
2023-02-06 13:44:27 -06:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2023-09-02 18:08:05 -06:00
|
|
|
<activity android:name=".home.HomeActivity" android:theme="@style/Theme.Isolaatti" />
|
2023-02-06 13:44:27 -06:00
|
|
|
<activity android:name=".login.LogInActivity" android:theme="@style/Theme.Isolaatti" />
|
2023-08-19 17:31:50 -06:00
|
|
|
<activity android:name=".profile.ui.ProfileActivity"
|
|
|
|
|
android:theme="@style/Theme.Isolaatti"
|
|
|
|
|
android:parentActivityName=".MainActivity"/>
|
2023-02-11 23:41:23 -06:00
|
|
|
<activity android:name=".settings.ui.SettingsActivity" android:theme="@style/Theme.Isolaatti"/>
|
2023-07-27 22:49:55 -06:00
|
|
|
<activity android:name=".posting.posts.ui.CreatePostActivity" android:theme="@style/Theme.Isolaatti" android:windowSoftInputMode="adjustResize"/>
|
2023-09-10 16:37:21 -06:00
|
|
|
<activity android:name=".posting.posts.viewer.ui.PostViewerActivity" android:theme="@style/Theme.Isolaatti"/>
|
2023-07-31 00:25:25 -06:00
|
|
|
<activity android:name=".drafts.ui.DraftsActivity" android:theme="@style/Theme.Isolaatti"/>
|
2023-08-19 20:52:22 -06:00
|
|
|
<activity android:name=".about.AboutActivity" android:theme="@style/Theme.Isolaatti"/>
|
2023-09-10 20:35:22 -06:00
|
|
|
<activity android:name=".images.picture_viewer.ui.PictureViewerActivity" android:theme="@style/Theme.Isolaatti"/>
|
2023-11-11 16:58:44 -06:00
|
|
|
<activity android:name=".sign_up.ui.SignUpActivity" android:theme="@style/Theme.Isolaatti"/>
|
2023-11-20 22:53:14 -06:00
|
|
|
<provider
|
|
|
|
|
android:authorities="com.isolaatti.provider"
|
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/provider_paths"/>
|
|
|
|
|
</provider>
|
2023-02-06 13:44:27 -06:00
|
|
|
</application>
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
|
</manifest>
|