Skip to content

Commit

Permalink
[FIX] #338 EncryptedSharedPreferences 관련 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeha committed Mar 29, 2024
1 parent 8929aa6 commit 75d7956
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
7 changes: 4 additions & 3 deletions app/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
<uses-permission
android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
tools:ignore="ProtectedPermissions" />

<application
android:name=".application.ApplicationClass"
android:allowBackup="true"
android:allowBackup="false"
android:dataExtractionRules="@xml/data_extraction_rules"
android:enableOnBackInvokedCallback="true"
android:fullBackupContent="@xml/backup_rules"
android:fullBackupContent="false"
android:icon="@mipmap/ic_runnect_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_runnect_launcher_round"
Expand Down
13 changes: 8 additions & 5 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

<application
android:name=".application.ApplicationClass"
android:allowBackup="true"
android:allowBackup="false"
android:dataExtractionRules="@xml/data_extraction_rules"
android:enableOnBackInvokedCallback="true"
android:fullBackupContent="@xml/backup_rules"
android:fullBackupContent="false"
android:icon="@mipmap/ic_runnect_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_runnect_launcher_round"
Expand Down Expand Up @@ -65,15 +65,18 @@

<activity
android:name=".presentation.storage.mydrawdetail.MyDrawDetailActivity"
android:exported="false"/>
android:exported="false" />

<activity android:name=".presentation.scheme.SchemeActivity"
<activity
android:name=".presentation.scheme.SchemeActivity"
android:exported="true">

<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data
android:host="rnnt.page.link"
android:scheme="https" />
Expand Down Expand Up @@ -130,7 +133,7 @@
android:windowSoftInputMode="adjustResize" />
<activity
android:name=".presentation.detail.CourseDetailActivity"
android:exported="false"/>
android:exported="false" />
<activity
android:name=".presentation.mypage.reward.MyRewardActivity"
android:exported="false" />
Expand Down

0 comments on commit 75d7956

Please sign in to comment.