By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
| { | |
| "page_type": "Registration", | |
| "page_category": "Captain Registration", | |
| "user_id": "", | |
| "hashed_email_id": "", | |
| "hashed_phone_number": "", | |
| "user_type": "Guest", | |
| "logged_in_status": "Not Logged In", | |
| "city_id": "", | |
| "city": "", |
| var loadtimer = new Date(); | |
| var params = { | |
| 'page_type': 'Landing', | |
| 'page_category': 'Captain Registration', // "No Category" if no backend/frontend page category | |
| 'user_id': '', // Do not put null nor any value like "none" leave blank if not logged in | |
| 'hashed_email_id': '', | |
| 'hashed_phone_number': '', | |
| 'user_type': 'Guest', // "Anonymous", "Guest" and/or "User" | |
| 'logged_in_status': 'Not Logged In', | |
| 'city_id': '', |
| # import config. | |
| # You can change the default config with `make cnf="config_special.env" build` | |
| cnf ?= config.env | |
| include $(cnf) | |
| export $(shell sed 's/=.*//' $(cnf)) | |
| # import deploy config | |
| # You can change the default deploy config with `make cnf="deploy_special.env" release` | |
| dpl ?= deploy.env | |
| include $(dpl) |
| curl "https://www.google-analytics.com/collect?v=1^&_v=j68^&a=824103548^&t=event^&ni=0^&_s=1^&dl=https^%^3A^%^2F^%^2Fdrive.careem.com^%^2Fabc^&ul=en-us^&de=UTF-8^&dt=Drive^%^20with^%^20Careem^%^20^%^E2^%^80^%^93^%^20Driver^%^20Requirements^%^20^%^E2^%^80^%^93^%^20Become^%^20a^%^20Captain^&sd=24-bit^&sr=1536x864^&vp=1519x759^&je=0^&ec=signup_flow^&ea=time_to_load_page_completely^&el=1.08^&_u=yCCAAEADQ~^&jid=^&gjid=^&cid=1630598037.1533294401^&uid=^&tid=UA-110956041-6^&_gid=1868052149.1536649633^>m=G94PJR9PGN^&cg1=Registration^&cd1=^&cd2=Guest^&cd3=Registration^&cd4=Captain^%^20Registration^&cd5=Not^%^20Logged^%^20In^&cd6=^&cd7=^&cd8=^&cd9=^&cd10=^&cd11=^&cd12=^&z=657397636" -H "Referer: https://drive.careem.com/abc" -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36" --compressed |
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="__PACKAGE__" | |
| android:versionCode="1" | |
| android:versionName="1.0"> | |
| <supports-screens | |
| android:smallScreens="true" | |
| android:normalScreens="true" | |
| android:largeScreens="true" |
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!