Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
InvestCustomer
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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Giang Tran
InvestCustomer
Commits
ddb75ea2
Commit
ddb75ea2
authored
Nov 26, 2021
by
Giang Tran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update code
parent
1d08f5bb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
15 deletions
+25
-15
build.gradle
android/app/build.gradle
+2
-2
project.pbxproj
ios/Invest.xcodeproj/project.pbxproj
+4
-4
Info.plist
ios/Invest/Info.plist
+2
-2
Login.js
src/Screens/Authen/Login.js
+0
-0
FirebaseNotification.js
src/helper/FirebaseNotification.js
+17
-7
No files found.
android/app/build.gradle
View file @
ddb75ea2
...
...
@@ -132,8 +132,8 @@ android {
applicationId
"com.dcv.invest"
minSdkVersion
rootProject
.
ext
.
minSdkVersion
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
2
0
versionName
"2.
4
"
versionCode
2
3
versionName
"2.
7
"
vectorDrawables
.
useSupportLibrary
=
true
}
splits
{
...
...
ios/Invest.xcodeproj/project.pbxproj
View file @
ddb75ea2
...
...
@@ -905,7 +905,7 @@
CODE_SIGN_ENTITLEMENTS
=
Invest/InvestDebug.entitlements
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
1
6
;
CURRENT_PROJECT_VERSION
=
1
8
;
DEVELOPMENT_TEAM
=
MXZ24GRH48
;
ENABLE_BITCODE
=
NO
;
GCC_PREPROCESSOR_DEFINITIONS
=
(
...
...
@@ -914,7 +914,7 @@
);
INFOPLIST_FILE
=
Invest/Info.plist
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks"
;
MARKETING_VERSION
=
2.3.
2
;
MARKETING_VERSION
=
2.3.
4
;
OTHER_LDFLAGS
=
(
"$(inherited)"
,
"-ObjC"
,
...
...
@@ -939,11 +939,11 @@
CODE_SIGN_ENTITLEMENTS
=
Invest/Invest.entitlements
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
1
6
;
CURRENT_PROJECT_VERSION
=
1
8
;
DEVELOPMENT_TEAM
=
MXZ24GRH48
;
INFOPLIST_FILE
=
Invest/Info.plist
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks"
;
MARKETING_VERSION
=
2.3.
2
;
MARKETING_VERSION
=
2.3.
4
;
OTHER_LDFLAGS
=
(
"$(inherited)"
,
"-ObjC"
,
...
...
ios/Invest/Info.plist
View file @
ddb75ea2
...
...
@@ -61,13 +61,13 @@
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
k
e
y
>
NSCameraUsageDescription
<
/k
e
y
>
<
string
>
Accect
connect
camera
<
/string
>
<
string
>
Cho
ph
é
p
truy
c
ậ
p
v
à
o
m
á
y
ả
nh
v
à
th
ư
vi
ệ
n
để
t
ả
i
ả
nh
l
ê
n
ứ
ng
d
ụ
ng
<
/string
>
<
k
e
y
>
NSFaceIDUsageDescription
<
/k
e
y
>
<
string
>
Enabling
Face
ID
allows
you
quick
and
secure
access
to
your
account.
<
/string
>
<
k
e
y
>
NSLocationWhenInUseUsageDescription
<
/k
e
y
>
<
string
><
/string
>
<
k
e
y
>
NSPhotoLibraryUsageDescription
<
/k
e
y
>
<
string
>
To
upload
images
<
/string
>
<
string
>
Upload
ả
nh
l
ê
n
ứ
ng
d
ụ
ng
<
/string
>
<
k
e
y
>
UIAppFonts
<
/k
e
y
>
<
a
rr
a
y
>
<
string
>
AntDesign.ttf
<
/string
>
...
...
src/Screens/Authen/Login.js
View file @
ddb75ea2
This diff is collapsed.
Click to expand it.
src/helper/FirebaseNotification.js
View file @
ddb75ea2
...
...
@@ -38,13 +38,23 @@ const FirebaseNotification = (props) => {
const
unsubscribe
=
messaging
().
onMessage
(
async
(
remoteMessage
)
=>
{
console
.
log
(
'A new FCM message arrived!'
,
remoteMessage
.
data
);
const
{
action_type
,
body
,
title
,
record_id
}
=
remoteMessage
.
data
;
props
.
showNotificaton
({
title
,
content
:
body
,
screen
:
convertScreen
(
action_type
),
id_record
:
record_id
,
link
:
remoteMessage
.
data
?.
redirect_to
,
});
if
(
action_type
==
'REDIRECT'
)
{
props
.
showNotificaton
({
title
,
content
:
body
,
screen
:
convertScreen
(
action_type
),
id_record
:
record_id
,
link
:
remoteMessage
.
data
?.
redirect_to
,
});
}
else
{
props
.
showNotificaton
({
title
,
content
:
body
,
screen
:
convertScreen
(
action_type
),
id_record
:
record_id
,
link
:
null
,
});
}
if
(
action_type
!=
'CUSTOMER_NEWS'
)
refetchDataUser
();
});
...
...
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