Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
odakyuToiletSignage
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
kddi
odakyuToiletSignage
Commits
5a707ad7
Commit
5a707ad7
authored
Dec 28, 2017
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
端末再起動時、自動的にアプリ起動されない問題対応
トイレIDの最小値の設定変更
parent
4ccd46c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
app/src/main/AndroidManifest.xml
+1
-1
app/src/main/java/jp/odakyu/toiletsignage/json/USBToiletDefaultJson.java
+1
-1
No files found.
app/src/main/AndroidManifest.xml
View file @
5a707ad7
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
<intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<action
android:name=
"android.intent.action.MAIN"
/>
<!-- The following two intent-filters are the key to set homescreen -->
<!-- The following two intent-filters are the key to set homescreen -->
<category
android:name=
"android.intent.category.DEFAULT"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</intent-filter>
</activity>
</activity>
...
@@ -37,6 +36,7 @@
...
@@ -37,6 +36,7 @@
<receiver
android:name=
".receiver.OnBootReceiver"
>
<receiver
android:name=
".receiver.OnBootReceiver"
>
<intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.BOOT_COMPLETED"
/>
<action
android:name=
"android.intent.action.BOOT_COMPLETED"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
</intent-filter>
</intent-filter>
</receiver>
</receiver>
</application>
</application>
...
...
app/src/main/java/jp/odakyu/toiletsignage/json/USBToiletDefaultJson.java
View file @
5a707ad7
...
@@ -67,7 +67,7 @@ public class USBToiletDefaultJson {
...
@@ -67,7 +67,7 @@ public class USBToiletDefaultJson {
return
false
;
return
false
;
}
}
if
(
getToiletId
()
<
0
||
getToiletId
()
>
1000000
)
{
if
(
getToiletId
()
<
1
||
getToiletId
()
>
1000000
)
{
return
false
;
return
false
;
}
}
...
...
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