Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
android-client
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
icarus
android-client
Commits
ab8b78af
You need to sign in or sign up before continuing.
Commit
ab8b78af
authored
May 03, 2018
by
Mattia Ducci
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fixes
parent
f412b4ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
MainActivity.java
.../everywaretechnologies/it/icarusandroid/MainActivity.java
+1
-1
Icarus.java
...ava/framework/everywaretechnologies/it/icarus/Icarus.java
+2
-2
No files found.
IcarusAndroid/app/src/main/java/framework/everywaretechnologies/it/icarusandroid/MainActivity.java
View file @
ab8b78af
...
...
@@ -77,7 +77,7 @@ public class MainActivity extends AppCompatActivity {
else
eventType
=
enteredExitedScreenTrackSwitch
.
getTextOff
().
toString
();
instance
.
trackScreen
(
MainActivity
.
this
,
eventType
,
true
);
instance
.
trackScreen
(
eventType
,
true
);
}
public
void
onBtnUserPrefChanges
(
View
view
){
...
...
IcarusAndroid/icarus/src/main/java/framework/everywaretechnologies/it/icarus/Icarus.java
View file @
ab8b78af
...
...
@@ -112,11 +112,11 @@ public class Icarus {
//---------------------- LOG SCREEN TRACKING ------------------------------
public
void
trackScreen
(
Context
c
,
String
screenEventType
,
boolean
debug
){
public
void
trackScreen
(
String
screenEventType
,
boolean
debug
){
Log
.
d
(
curContext
.
getString
(
R
.
string
.
icarus_class
),
"log screen track"
);
String
screenName
=
c
.
getClass
().
getSimpleName
();
String
screenName
=
c
urContext
.
getClass
().
getSimpleName
();
if
(
screenEventType
.
equalsIgnoreCase
(
ScreenTrackResource
.
EVENT_ENTERED
)
||
screenEventType
.
equalsIgnoreCase
(
ScreenTrackResource
.
EVENT_EXITED
)
){
...
...
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