Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
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
abdullh.alsoleman
Front-End
Commits
963b90ed
Commit
963b90ed
authored
Jun 21, 2017
by
Devon Carew
Committed by
GitHub
Jun 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
send the FLUTTER_HOST env var as analytics' app installer ID (#10889)
parent
b231006c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
usage.dart
packages/flutter_tools/lib/src/usage.dart
+7
-4
No files found.
packages/flutter_tools/lib/src/usage.dart
View file @
963b90ed
...
...
@@ -9,12 +9,11 @@ import 'package:usage/usage_io.dart';
import
'base/context.dart'
;
import
'base/os.dart'
;
import
'base/platform.dart'
;
import
'base/utils.dart'
;
import
'globals.dart'
;
import
'version.dart'
;
// TODO(devoncarew): We'll want to find a way to send (sanitized) command parameters.
const
String
_kFlutterUA
=
'UA-67589403-6'
;
Usage
get
flutterUsage
=>
Usage
.
instance
;
...
...
@@ -25,10 +24,14 @@ class Usage {
final
String
version
=
versionOverride
??
FlutterVersion
.
getVersionString
(
whitelistBranchName:
true
);
_analytics
=
new
AnalyticsIO
(
_kFlutterUA
,
settingsName
,
version
);
// Report a more detailed OS version string than package:usage does by
// default. Also, send the branch name as the "channel".
// Report a more detailed OS version string than package:usage does by default.
_analytics
.
setSessionValue
(
'cd1'
,
os
.
name
);
// Send the branch name as the "channel".
_analytics
.
setSessionValue
(
'cd2'
,
FlutterVersion
.
getBranchName
(
whitelistBranchName:
true
));
// Record the host as the application installer ID - the context that flutter_tools is running in.
if
(
platform
.
environment
.
containsKey
(
'FLUTTER_HOST'
))
{
_analytics
.
setSessionValue
(
'aiid'
,
platform
.
environment
[
'FLUTTER_HOST'
]);
}
bool
runningOnCI
=
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