|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<manifest xmlns:tools="http://schemas.android.com/tools" |
| 3 | + xmlns:android="http://schemas.android.com/apk/res/android" |
| 4 | + android:versionName="0.4.6" |
| 5 | + android:versionCode="153"> |
| 6 | + |
| 7 | + <uses-feature |
| 8 | + android:name="android.hardware.camera" |
| 9 | + android:required="false" /> |
| 10 | + |
| 11 | + <uses-permission android:name="android.permission.CAMERA" /> |
| 12 | + <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" /> |
| 13 | + <uses-permission android:name="android.permission.INTERNET" /> |
| 14 | + <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> |
| 15 | + |
| 16 | + <uses-permission |
| 17 | + android:name="android.permission.READ_EXTERNAL_STORAGE" |
| 18 | + android:maxSdkVersion="32" /> |
| 19 | + |
| 20 | + <uses-permission |
| 21 | + android:name="android.permission.WRITE_EXTERNAL_STORAGE" |
| 22 | + android:maxSdkVersion="31" |
| 23 | + tools:ignore="ScopedStorage" /> |
| 24 | + |
| 25 | + <application |
| 26 | + android:name=".AiStableDiffusionClientApp" |
| 27 | + android:icon="@mipmap/ic_launcher" |
| 28 | + android:label="@string/app_name" |
| 29 | + android:requestLegacyExternalStorage="true" |
| 30 | + android:theme="@style/Theme.AiSdCompose" |
| 31 | + android:usesCleartextTraffic="true"> |
| 32 | + |
| 33 | + <activity |
| 34 | + android:name="com.shifthackz.aisdv1.presentation.activity.AiStableDiffusionActivity" |
| 35 | + android:exported="true" |
| 36 | + android:launchMode="singleInstance" |
| 37 | + android:screenOrientation="portrait" |
| 38 | + android:taskAffinity="" |
| 39 | + android:windowSoftInputMode="adjustResize"> |
| 40 | + <intent-filter> |
| 41 | + <action android:name="android.intent.action.MAIN" /> |
| 42 | + <category android:name="android.intent.category.LAUNCHER" /> |
| 43 | + </intent-filter> |
| 44 | + </activity> |
| 45 | + |
| 46 | + <provider |
| 47 | + android:name="androidx.core.content.FileProvider" |
| 48 | + android:authorities="${applicationId}.fileprovider" |
| 49 | + android:exported="false" |
| 50 | + android:grantUriPermissions="true"> |
| 51 | + <meta-data |
| 52 | + android:name="android.support.FILE_PROVIDER_PATHS" |
| 53 | + android:resource="@xml/file_provider_paths" /> |
| 54 | + </provider> |
| 55 | + |
| 56 | + <meta-data |
| 57 | + android:name="com.google.android.gms.ads.APPLICATION_ID" |
| 58 | + android:value="ca-app-pub-5994265132349884~9645142847" /> |
| 59 | + |
| 60 | + </application> |
| 61 | +</manifest> |
0 commit comments