Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
c8119673
Commit
c8119673
authored
Oct 05, 2022
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Task #49379【Android12】API31対応
android:exported設定
parent
ec960d8b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
ABVJE_Launcher_Android/AndroidManifest.xml
+6
-6
No files found.
ABVJE_Launcher_Android/AndroidManifest.xml
View file @
c8119673
...
...
@@ -53,26 +53,26 @@
android:value=
"true"
/>
<!-- LinkingビーコンIFの使用宣言 -->
<service
android:name=
"jp.agentec.abook.abv.cl.push.ABVFcmListenerService"
>
<service
android:name=
"jp.agentec.abook.abv.cl.push.ABVFcmListenerService"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"com.google.firebase.MESSAGING_EVENT"
></action>
</intent-filter>
</service>
<service
android:name=
"jp.agentec.abook.abv.cl.push.ABVInstanceIDListenerService"
>
<service
android:name=
"jp.agentec.abook.abv.cl.push.ABVInstanceIDListenerService"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"com.google.firebase.INSTANCE_ID_EVENT"
></action>
</intent-filter>
</service>
<receiver
android:name=
"jp.agentec.abook.abv.launcher.android.OnAppDownloadReceiver"
>
<receiver
android:name=
"jp.agentec.abook.abv.launcher.android.OnAppDownloadReceiver"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED"
/>
<action
android:name=
"android.intent.action.DOWNLOAD_COMPLETE"
/>
</intent-filter>
</receiver>
<receiver
android:name=
"jp.agentec.abook.abv.cl.environment.NetworkStateChangeReceiver"
>
<receiver
android:name=
"jp.agentec.abook.abv.cl.environment.NetworkStateChangeReceiver"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"android.net.conn.CONNECTIVITY_CHANGE"
/>
</intent-filter>
...
...
@@ -108,7 +108,7 @@
android:name=
"jp.agentec.abook.abv.ui.home.activity.PreSplashActivity"
android:configChanges=
"keyboardHidden|orientation|screenSize"
android:launchMode=
"singleTask"
android:theme=
"@android:style/Theme.NoTitleBar.Fullscreen"
>
android:theme=
"@android:style/Theme.NoTitleBar.Fullscreen"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
...
...
@@ -204,7 +204,7 @@
android:hardwareAccelerated=
"false"
android:configChanges=
"keyboardHidden"
android:theme=
"@android:style/Theme.NoTitleBar.Fullscreen"
/>
<activity
android:name=
"jp.agentec.abook.abv.ui.common.activity.ShowPushMessageDailogActivity"
android:theme=
"@android:style/Theme.Translucent.NoTitleBar"
>
<activity
android:name=
"jp.agentec.abook.abv.ui.common.activity.ShowPushMessageDailogActivity"
android:theme=
"@android:style/Theme.Translucent.NoTitleBar"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
</intent-filter>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment