Changes for page Flutter integration
Last modified by Developer on 2020/03/19 15:21
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -316,7 +316,7 @@ 316 316 **Recommended parameters:** CONTENT_ID 317 317 {{/showhide}} 318 318 319 -=== 3. 3.4 Event parameters ===319 +=== 3.2.4 Event parameters === 320 320 321 321 In addition each category that is passed with event may have optional parameters defined as part of the plugin constants, or custom defined as String. Below is a list of recommended parameters. 322 322 ... ... @@ -398,14 +398,14 @@ 398 398 399 399 {{/showhide}} 400 400 401 -== 3. 4Remaining methods ==401 +== 3.3 Remaining methods == 402 402 403 -** voidsetCollectAll()**403 +**Mobigate.setCollectAll()** 404 404 This method enables all data collectors. By default all data collectors are enabled. 405 405 406 406 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 407 -{{code language=" dart"}}408 - mobigateInstance.setCollectAll();407 +{{code language="javascript"}} 408 +Mobigate.disableAllDataCollector() 409 409 {{/code}} 410 410 {{/showhide}} 411 411 ... ... @@ -412,21 +412,19 @@ 412 412 (% style="color:powderblue" %) 413 413 ---- 414 414 415 -** voidconfigureDataCollectors(boolenable,List<int>collectors)**415 +**Mobigate.configureDataCollectors(enable, collectors)** 416 416 Enable or disable DataCollector by array collectors input 417 417 418 418 (% class="table-bordered table-hover" style="border-color:powderblue" %) 419 419 |=(% style="background-color:powderblue" %)Name|=(% style="background-color:powderblue" %)Type|=(% style="background-color:powderblue" %)Description 420 -|enable|boolean|true if enable, false if disable 421 -|collectors|array of [[data collector const>>doc:||anchor="H4.3Datacollectorsconstants"]]|e.g.,[Mobigate.DATA_COLLECTOR_BATTERY, DATA_COLLECTOR_GEOLOCATION] 420 +|enable|boolean|true if enable, false if disable| 421 +|collectors|array of [[data collector const>>doc:||anchor="H4.3Datacollectorsconstants"]]|e.g.,[Mobigate.DATA_COLLECTOR_BATTERY, DATA_COLLECTOR_GEOLOCATION]| 422 422 423 423 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 424 -{{code language="dart"}} 425 -mobigateInstance.configureDataCollectors(true, [ 426 - DataCollector.APPS_LIST, 427 - DataCollector.APPS_USAGE, 428 - DataCollector.BROWSER 429 - ]); 424 +{{code language="javascript"}} 425 +Mobigate.configureDataCollectors(true, [Mobigate.DATA_COLLECTOR_APPS_LIST, 426 + Mobigate.DATA_COLLECTOR_BATTERY, 427 + Mobigate.DATA_COLLECTOR_PHONE_INFO]) 430 430 {{/code}} 431 431 {{/showhide}} 432 432 ... ... @@ -433,12 +433,12 @@ 433 433 (% style="color:powderblue" %) 434 434 ---- 435 435 436 -** voiddisableAllDataCollector()**434 +**Mobigate.disableAllDataCollector()** 437 437 Disable all data collectors 438 438 439 439 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 440 -{{code language=" dart"}}441 - mobigateInstance.disableAllDataCollector();438 +{{code language="javascript"}} 439 +Mobigate.disableAllDataCollector() 442 442 {{/code}} 443 443 {{/showhide}} 444 444 ... ... @@ -445,16 +445,16 @@ 445 445 (% style="color:powderblue" %) 446 446 ---- 447 447 448 -** voidsetEmail(Stringemail)**446 +**Mobigate.setEmail(email)** 449 449 Set user's email 450 450 451 451 (% class="table-bordered table-hover" style="border-color:powderblue" %) 452 452 |=(% style="background-color:powderblue" %)Name|=(% style="background-color:powderblue" %)Type|=(% style="background-color:powderblue" %)Description 453 -|email |String |user's email address 451 +|email |String |user's email address | 454 454 455 455 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 456 -{{code language=" dart"}}457 - mobigateInstance.setEmail('test@spicymobile.pl');454 +{{code language="javascript"}} 455 +Mobigate.setEmail('emailExample@spicymobile.pl') 458 458 {{/code}} 459 459 {{/showhide}} 460 460 ... ... @@ -461,12 +461,21 @@ 461 461 (% style="color:powderblue" %) 462 462 ---- 463 463 464 -** Future<String> getEmail()**465 -Get previously set user email . Return email on success, error otherwise.462 +**Mobigate.getEmail(onSuccess, onError)** 463 +Get previously set user email 466 466 465 +(% class="table-bordered table-hover" style="border-color:powderblue" %) 466 +|=(% style="background-color:powderblue" %)Name|=(% style="background-color:powderblue" %)Type|=(% style="background-color:powderblue" %)Description 467 +|onSuccess |Function |returns callback object 468 +|onError |Function |returns callback object 469 + 467 467 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 468 -{{code language="dart"}} 469 -final String email = await mobigateInstance.getEmail(); 471 +{{code language="javascript"}} 472 +Mobigate.getEmail((success) => { 473 + console.log("user email: " + success) 474 + }, (error) => { 475 + console.log(error) 476 + }) 470 470 {{/code}} 471 471 {{/showhide}} 472 472 ... ... @@ -473,7 +473,7 @@ 473 473 (% style="color:powderblue" %) 474 474 ---- 475 475 476 -** voidsetFbToken(String token)**483 +**Mobigate.setFbToken(token)** 477 477 Set fb token for social network collector 478 478 479 479 (% class="table-bordered table-hover" style="border-color:powderblue" %) ... ... @@ -481,20 +481,49 @@ 481 481 |token |string |facebook token 482 482 483 483 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 484 -{{code language=" dart"}}485 - mobigateInstance.setFbToken('dsf87esy789fys9dfu08sds54s6547c8s8doc4');491 +{{code language="javascript"}} 492 +Mobigate.setFbToken('9dsf87ds98978das98d7893u12rj808d0j09012jd012') 486 486 {{/code}} 487 487 {{/showhide}} 488 488 496 +((( 497 +(% class="showhidebutton" %) 498 +((( 499 +{{html clean="false"}} 500 +<a href="javascript:void(0)" id="showhidebuttontext3" data-show-duration="0" data-show-effect="toggle" data-show-message="Example" data-hide-message="Example">Example</a> 501 +{{/html}} 502 +))) 503 + 504 +(% class="showhidecontent" id="showhidecontent3" style="display: none;" %) 505 +((( 506 +((( 507 +{{code language="javascript"}} 508 +Mobigate.setFbToken('9dsf87ds98978das98d7893u12rj808d0j09012jd012') 509 +{{/code}} 510 +))) 511 +))) 512 +))) 513 + 514 + 515 + 489 489 (% style="color:powderblue" %) 490 490 ---- 491 491 492 -** Future<String> getSDKInfo()**493 -Getting information about the library . Return on success sdk info string, error otherwise.519 +**Mobigate.getSDKInfo(onSuccess, onError)** 520 +Getting information about the library 494 494 522 +(% class="table-bordered table-hover" style="border-color:powderblue" %) 523 +|=(% style="background-color:powderblue" %)Name|=(% style="background-color:powderblue" %)Type|=(% style="background-color:powderblue" %)Description 524 +|onSuccess |Function |returns callback object 525 +|onError |Function |returns callback object 526 + 495 495 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 496 -{{code language="dart"}} 497 -final String sdkInfo = await mobigateInstance.getSDKInfo(); 528 +{{code language="javascript"}} 529 +Mobigate.getSDKInfo((success) => { 530 + console.log("sdk info: " + success) 531 + }, (error) => { 532 + console.log(error) 533 + }) 498 498 {{/code}} 499 499 {{/showhide}} 500 500 ... ... @@ -501,12 +501,21 @@ 501 501 (% style="color:powderblue" %) 502 502 ---- 503 503 504 -** Future<String> getSDKUniqueIdentifier()**505 -Return unique SDK identificator . Return on success sdk unique identifier, error otherwise.540 +**Mobigate.getSDKUniqueIdentifier(onSuccess, onError)** 541 +Return unique SDK identificator 506 506 543 +(% class="table-bordered table-hover" style="border-color:powderblue" %) 544 +|=(% style="background-color:powderblue" %)Name|=(% style="background-color:powderblue" %)Type|=(% style="background-color:powderblue" %)Description 545 +|onSuccess |Function |returns callback object 546 +|onError |Function |returns callback object 547 + 507 507 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 508 -{{code language="dart"}} 509 -final String sdkUniqueIdentifier = await mobigateInstance.getSDKUniqueIdentifier(); 549 +{{code language="javascript"}} 550 +Mobigate.getSDKUniqueIdentifier((success) => { 551 + console.log("UUID: " + success) 552 + }, (error) => { 553 + console.log(error) 554 + }) 510 510 {{/code}} 511 511 {{/showhide}} 512 512 ... ... @@ -513,12 +513,22 @@ 513 513 (% style="color:powderblue" %) 514 514 ---- 515 515 516 -** Future<List<int>>getIDsProfiles()**561 +**Mobigate.getIDsProfiles(onSuccess, onError)** 517 517 Method returns IDs profiles. List of IDs profiles in the application memory is updated (synchronized with the server) at specified intervals. To enable functionality, use the 'enableIDsProfiles (boolean enable)' method. Returns the identifiers of IDs profiles (ex. 5,9,20), returns '0' if list of user IDs profiles is empty, returns 'null' if the system has not yet communicated 518 518 564 + 565 +(% class="table-bordered table-hover" style="border-color:powderblue" %) 566 +|=(% style="background-color:powderblue" %)Name|=(% style="background-color:powderblue" %)Type|=(% style="background-color:powderblue" %)Description 567 +|onSuccess |Function |returns callback object 568 +|onError |Function |returns callback object 569 + 519 519 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 520 -{{code language="dart"}} 521 -final List<int> idsProfiles = await mobigateInstance.getIDsProfiles(); 571 +{{code language="javascript"}} 572 +Mobigate.getIDsProfiles((success) => { 573 + console.log("Profiles: " + success) 574 + }, (error) => { 575 + console.log(error) 576 + }) 522 522 {{/code}} 523 523 {{/showhide}} 524 524 ... ... @@ -525,12 +525,21 @@ 525 525 (% style="color:powderblue" %) 526 526 ---- 527 527 528 -** Future<Map<String, int>>getAdOceanTargeting()**583 +**Mobigate.getAdOceanTargeting(onSuccess, onError)** 529 529 Getting numerical variables, that can be used for ads targeting. Method must be called from separate thread. Return 3 different identifiers of a user, encoded into a map of AdOcean numerical variables 530 530 586 +(% class="table-bordered table-hover" style="border-color:powderblue" %) 587 +|=(% style="background-color:powderblue" %)Name|=(% style="background-color:powderblue" %)Type|=(% style="background-color:powderblue" %)Description 588 +|onSuccess |Function |returns callback object 589 +|onError |Function |returns callback object 590 + 531 531 {{showhide id="3" showmessage="Example" hidemessage="Example"}} 532 -{{code language="dart"}} 533 -final Map<String,int> adOceanTargeting = await mobigateInstance.getAdOceanTargeting(); 592 +{{code language="javascript"}} 593 +Mobigate.getAdOceanTargeting((success) => { 594 + console.log("Adocean targeting: " + success) 595 + }, (error) => { 596 + console.log(error) 597 + }) 534 534 {{/code}} 535 535 {{/showhide}} 536 536 ... ... @@ -542,55 +542,55 @@ 542 542 543 543 Used to set custom user fields inside //Mobigate.init()// method: 544 544 545 -* UserField.USER_FIELD_EMAIL546 -* UserField.USER_FIELD_IMSI547 -* UserField.USER_FIELD_IMEI548 -* UserField.USER_FIELD_SERIAL609 +* Mobigate.USER_FIELD_EMAIL 610 +* Mobigate.USER_FIELD_IMSI 611 +* Mobigate.USER_FIELD_IMEI 612 +* Mobigate.USER_FIELD_SERIAL 549 549 550 550 == 4.2 Data gather policy constants == 551 551 552 552 Used to set how the library collects data: 553 553 554 -* Mo nitorState.DATA_GATHER_POLICY_DEFAULT555 -* Mo nitorState.DATA_GATHER_POLICY_HIDE_TRAY556 -* Mo nitorState.DATA_GATHER_POLICY_BLOCK_DATA_BG618 +* Mobigate.DATA_GATHER_POLICY_DEFAULT 619 +* Mobigate.DATA_GATHER_POLICY_HIDE_TRAY 620 +* Mobigate.DATA_GATHER_POLICY_BLOCK_DATA_BG 557 557 558 558 == 4.3 Data collectors constants == 559 559 560 560 Used to set which data the library should collect: 561 561 562 -* DataCollector.APPS_LIST563 -* DataCollector.DATA_COLLECTOR_APPS_USAGE564 -* DataCollector.BATTERY565 -* DataCollector.BROWSER566 -* DataCollector.CALENDAR_EVENTS567 -* DataCollector.CPU_PROCESS568 -* DataCollector.DICTIONARY569 -* DataCollector.GEOLOCATION570 -* DataCollector.HEADSET_PLUG571 -* DataCollector.MEDIA_FILES572 -* DataCollector.MEMORY_USEAGE573 -* DataCollector.NETWORK_CONNECTION574 -* DataCollector.NETWORK_USEAGE575 -* DataCollector.PACKAGE_CHANGE576 -* DataCollector.PHONE_INFO577 -* DataCollector.ROAMING578 -* DataCollector.SCREEN_ORIENTED579 -* DataCollector.SIGNAL_STRENGTH580 -* DataCollector.PROFILE_MODE581 -* DataCollector.WIFI_DATA_CONNECTION582 -* DataCollector.PERMISSION_COLLECTOR583 -* DataCollector.NFC_COLLECTOR584 -* DataCollector.BLUETOOTH_COLLECTOR585 -* DataCollector.BLUETOOTH_DEVICES_COLLECTOR586 -* DataCollector.MOVEMENT_COLLECTOR587 -* DataCollector.FACEBOOK_NETWORK_COLLECTOR588 -* DataCollector.ROOT_COLLECTOR626 +* Mobigate.DATA_COLLECTOR_APPS_LIST 627 +* Mobigate.DATA_COLLECTOR_APPS_USAGE 628 +* Mobigate.DATA_COLLECTOR_BATTERY 629 +* Mobigate.DATA_COLLECTOR_BROWSER 630 +* Mobigate.DATA_COLLECTOR_CALENDAR_EVENTS 631 +* Mobigate.DATA_COLLECTOR_CPU_PROCESS 632 +* Mobigate.DATA_COLLECTOR_DICTIONARY 633 +* Mobigate.DATA_COLLECTOR_GEOLOCATION 634 +* Mobigate.DATA_COLLECTOR_HEADSET_PLUG 635 +* Mobigate.DATA_COLLECTOR_MEDIA_FILES 636 +* Mobigate.DATA_COLLECTOR_MEMORY_USEAGE 637 +* Mobigate.DATA_COLLECTOR_NETWORK_CONNECTION 638 +* Mobigate.DATA_COLLECTOR_NETWORK_USEAGE 639 +* Mobigate.DATA_COLLECTOR_PACKAGE_CHANGE 640 +* Mobigate.DATA_COLLECTOR_PHONE_INFO 641 +* Mobigate.DATA_COLLECTOR_ROAMING 642 +* Mobigate.DATA_COLLECTOR_SCREEN_ORIENTED 643 +* Mobigate.DATA_COLLECTOR_SIGNAL_STRENGTH 644 +* Mobigate.DATA_COLLECTOR_PROFILE_MODE 645 +* Mobigate.DATA_COLLECTOR_WIFI_DATA_CONNECTION 646 +* Mobigate.DATA_COLLECTOR_PERMISSION_COLLECTOR 647 +* Mobigate.DATA_COLLECTOR_NFC_COLLECTOR 648 +* Mobigate.DATA_COLLECTOR_BLUETOOTH_COLLECTOR 649 +* Mobigate.DATA_COLLECTOR_BLUETOOTH_DEVICES_COLLECTOR 650 +* Mobigate.DATA_COLLECTOR_MOVEMENT_COLLECTOR 651 +* Mobigate.DATA_COLLECTOR_FACEBOOK_NETWORK_COLLECTOR 652 +* Mobigate.DATA_COLLECTOR_ROOT_COLLECTOR 589 589 590 590 == 4.4 Category and parameter constants == 591 591 592 -Instead of using defined [[categories>>doc:||anchor="H3. 3.3Eventcategories"]] or [[parameters>>doc:||anchor="H3.3.4Eventparameters"]] in the form of text, you can use constants defined in the plugin. All you have to do isuseEventCategory orEventParameterclasse.g.,EventCategory.LEVEL_ACCOMPLISHED,EventCategory.PURCHASE,EventParameter.PRICE,EventParameter.LEVEL.656 +Instead of using defined [[categories>>doc:||anchor="H3.2.3Eventcategories"]] or [[parameters>>doc:||anchor="H3.2.4Eventparameters"]] in the form of text, you can use constants defined in the plugin. All you have to do is add the prefix "CATEGORY_" or "PARAMETER_" to the category name or parameter e.g., Mobigate.CATEGORY_LEVEL_ACCOMPLISHED, Mobigate.CATEGORY_PURCHASE, Mobigate.PARAMETER_PRICE, Mobigate.PARAMETER_LEVEL. 593 593 594 594 = 5. Sample app = 595 595 596 -The sample application is located in the github repository [[here>>https://github.com/mobigatesdk/ flutter_mobigate]] in //example// folder.660 +The sample application is located in the github repository [[here>>https://github.com/mobigatesdk/react-native-mobigate]] in //example// folder.