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
101ca21f
Commit
101ca21f
authored
Apr 15, 2022
by
onuma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#46276 URLをgradle.propetiesに移動
parent
9bae5bf9
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
5 deletions
+17
-5
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/ABVEnvironment.java
+3
-0
ABVJE_Res_Default_Android/build.gradle
+3
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/util/Initializer.java
+3
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ABookSettingFragment.java
+1
-1
gradle.properties
+7
-4
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/ABVEnvironment.java
View file @
101ca21f
...
...
@@ -64,6 +64,9 @@ public class ABVEnvironment {
public
boolean
operationGroupMasterClearFlg
;
// プライバシーポリシーURL
public
String
privacyPolicyUrl
;
////////////////////////////// 定数 //////////////////////////////////
private
static
final
String
ServerTimeKey
=
"ABook"
;
...
...
ABVJE_Res_Default_Android/build.gradle
View file @
101ca21f
...
...
@@ -56,6 +56,9 @@ android {
resValue
(
"integer"
,
"push_message"
,
"${push_message}"
)
resValue
(
"integer"
,
"check_app_update"
,
"${check_app_update}"
)
resValue
(
"integer"
,
"not_delete_all_contents"
,
"${not_delete_all_contents}"
)
// privacy policy
resValue
(
"string"
,
"privacy_policy_url"
,
"${privacy_policy_url}"
)
}
sourceSets
{
main
{
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/util/Initializer.java
View file @
101ca21f
...
...
@@ -139,6 +139,9 @@ public class Initializer {
}
env
.
aspectType
=
getAspectType
();
// privacy policy url
env
.
privacyPolicyUrl
=
s
(
R
.
string
.
privacy_policy_url
);
env
.
setInitialized
(
true
);
// Helperクラス初期化
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ABookSettingFragment.java
View file @
101ca21f
...
...
@@ -256,7 +256,7 @@ public class ABookSettingFragment extends PreferenceFragment {
privacyPolicy
.
setOnPreferenceClickListener
(
new
Preference
.
OnPreferenceClickListener
()
{
@Override
public
boolean
onPreferenceClick
(
Preference
preference
)
{
Intent
browserIntent
=
new
Intent
(
Intent
.
ACTION_VIEW
,
Uri
.
parse
(
"https://www.agentec.jp/privacy/"
));
Intent
browserIntent
=
new
Intent
(
Intent
.
ACTION_VIEW
,
Uri
.
parse
(
getString
(
R
.
string
.
privacy_policy_url
)
));
startActivity
(
browserIntent
);
return
true
;
}
...
...
gradle.properties
View file @
101ca21f
...
...
@@ -38,8 +38,8 @@ app_versioncode=1
# abvEnvironments.xml
#cms server
acms_address
=
https://check130.a
book.bz
/acms
download_server_address
=
https://check130.a
book.bz
/acms
acms_address
=
https://check130.a
gentec.jp
/acms
download_server_address
=
https://check130.a
gentec.jp
/acms
#syncview server
websocket_server_http_url
=
https://check130.agentec.jp/v1
...
...
@@ -132,4 +132,7 @@ isStoreProduct=false
#1.2.302 Edition
#CHECK = 5
#EXFRAME = 6
edition_type
=
5
\ No newline at end of file
edition_type
=
5
#プライバシーポリシーURL
privacy_policy_url
=
https://www.agentec.jp/privacy/
\ No newline at end of file
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