Skip to content

Commit 5e1efaf

Browse files
committed
Update build version
1 parent fe43cbd commit 5e1efaf

File tree

2 files changed

+63
-2
lines changed

2 files changed

+63
-2
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:tools="http://schemas.android.com/tools"
33
xmlns:android="http://schemas.android.com/apk/res/android"
4-
android:versionName="0.4.5"
5-
android:versionCode="152">
4+
android:versionName="0.4.6"
5+
android:versionCode="153">
66

77
<uses-feature
88
android:name="android.hardware.camera"
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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

Comments
 (0)