2026-06-07 16:20:55 +09:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2026-05-31 19:13:12 +09:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
|
<activity
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation|density"
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:label="@string/title_activity_main"
|
|
|
|
|
android:theme="@style/AppTheme.NoActionBarLaunch"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<provider
|
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
2026-06-07 16:20:55 +09:00
|
|
|
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
|
2026-05-31 19:13:12 +09:00
|
|
|
</provider>
|
2026-06-03 18:55:48 +09:00
|
|
|
|
|
|
|
|
<!-- 카드 결제 알림 자동인식: 알림 접근 리스너 서비스 -->
|
|
|
|
|
<service
|
|
|
|
|
android:name=".CardNotifListenerService"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.service.notification.NotificationListenerService" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
2026-05-31 19:13:12 +09:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
<!-- Permissions -->
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2026-06-03 16:50:54 +09:00
|
|
|
|
|
|
|
|
<!-- 영수증 OCR: 카메라 촬영 / 갤러리 선택 -->
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
<uses-feature android:name="android.hardware.camera" android:required="false" />
|
2026-05-31 19:13:12 +09:00
|
|
|
</manifest>
|