Skip to content

Commit 75d7956

Browse files
committed
[FIX] #338 EncryptedSharedPreferences 관련 오류 해결
1 parent 8929aa6 commit 75d7956

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

app/src/debug/AndroidManifest.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools">
44

5-
<uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
5+
<uses-permission
6+
android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
67
tools:ignore="ProtectedPermissions" />
78

89
<application
910
android:name=".application.ApplicationClass"
10-
android:allowBackup="true"
11+
android:allowBackup="false"
1112
android:dataExtractionRules="@xml/data_extraction_rules"
1213
android:enableOnBackInvokedCallback="true"
13-
android:fullBackupContent="@xml/backup_rules"
14+
android:fullBackupContent="false"
1415
android:icon="@mipmap/ic_runnect_launcher"
1516
android:label="@string/app_name"
1617
android:roundIcon="@mipmap/ic_runnect_launcher_round"

app/src/main/AndroidManifest.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
<application
1919
android:name=".application.ApplicationClass"
20-
android:allowBackup="true"
20+
android:allowBackup="false"
2121
android:dataExtractionRules="@xml/data_extraction_rules"
2222
android:enableOnBackInvokedCallback="true"
23-
android:fullBackupContent="@xml/backup_rules"
23+
android:fullBackupContent="false"
2424
android:icon="@mipmap/ic_runnect_launcher"
2525
android:label="@string/app_name"
2626
android:roundIcon="@mipmap/ic_runnect_launcher_round"
@@ -65,15 +65,18 @@
6565

6666
<activity
6767
android:name=".presentation.storage.mydrawdetail.MyDrawDetailActivity"
68-
android:exported="false"/>
68+
android:exported="false" />
6969

70-
<activity android:name=".presentation.scheme.SchemeActivity"
70+
<activity
71+
android:name=".presentation.scheme.SchemeActivity"
7172
android:exported="true">
7273

7374
<intent-filter>
7475
<action android:name="android.intent.action.VIEW" />
76+
7577
<category android:name="android.intent.category.DEFAULT" />
7678
<category android:name="android.intent.category.BROWSABLE" />
79+
7780
<data
7881
android:host="rnnt.page.link"
7982
android:scheme="https" />
@@ -130,7 +133,7 @@
130133
android:windowSoftInputMode="adjustResize" />
131134
<activity
132135
android:name=".presentation.detail.CourseDetailActivity"
133-
android:exported="false"/>
136+
android:exported="false" />
134137
<activity
135138
android:name=".presentation.mypage.reward.MyRewardActivity"
136139
android:exported="false" />

0 commit comments

Comments
 (0)