Skip to main content

Fiksu integration by cordova mobile application

Fiksu:

A fiksu is a advertisement agency in various media domain. Especially in mobile application side more effectively analysis by mobile users. Their best to do the ads on your application and collective revenue  and pay to the yours.

Fiksu Integration Steps:(Install Linux or Ubuntu)

1.  Create an account from fiksu site as following URL https://dashboard.fiksu.com/en/signin.
2.  Singin your credential from this site.

3. Download the fiksu SDK files Download.
4.Then open your terminal and type android command. Open Android SDK manager widget is select Extra package inside play related package list item is select and install it.


5. Now extract fiksu SDK downloaded and get Path details and execute following command.

cordova plugin add com.fiksu.sdk --searchpath home/user/Fiksu-SDK-for-Cordova-1.2.0/Library/plugin --noregistry

6. Add the following code from your index.html inside of the javascrip blog.
Android:

onDeviceReady: function() {
    app.receivedEvent('deviceready');
    FiksuTrackingManager.initialize(this);
}

FiksuTrackingManager.uploadRegistration(FiksuTrackingManager.RegistrationEvent.Event1);
FiksuTrackingManager.uploadRegistration(FiksuTrackingManager.RegistrationEvent.Event2);
FiksuTrackingManager.uploadRegistration(FiksuTrackingManager.RegistrationEvent.Event3);

iOS:
onDeviceReady: function() {
    app.receivedEvent('deviceready');
    FiksuTrackingManager.initialize({
        itunesApplicationId: "123456789",
        debugModeEnabled: true
    });
}
FiksuTrackingManager.uploadRegistration(FiksuTrackingManager.RegistrationEvent.Event1);
FiksuTrackingManager.uploadRegistration(FiksuTrackingManager.RegistrationEvent.Event2);
FiksuTrackingManager.uploadRegistration(FiksuTrackingManager.RegistrationEvent.Event3);
7. Let start to build and run your mobile application. 

8. See the sample screen shorts.


Comments

  1. This is great. Did Fiksu provide the plugin or was that something you made? Been trying to get them to give me info on a cordova plugin but no one I talk to seems to know. Would love to hear at contact@sworkit.com

    ReplyDelete
  2. This is great. Did Fiksu provide the plugin or was that something you made? Been trying to get them to give me info on a cordova plugin but no one I talk to seems to know. Would love to hear at contact@sworkit.com

    ReplyDelete



  3. Thank you! This was so helpful. The step by step approach you took made trying to replicate this with my variables very understandable.


    Google App Integration Chennai

    ReplyDelete

Post a Comment

Popular posts from this blog

How has lockdown impacted Indian farmers?

How has lockdown impacted Indian farmers?             Generally compare to other sectors it's not major impacted by our Indian farmers but we acceptable minor impacts. Here we separate major two farming cultures one is mono farming culture another one poly farming culture. Mono farming :             The major impacts from our Indian farmer for monoculture. Here I have briefly explained what are the things we had faced our local farmers. Here I explain two different crops type: Daily crops : * We harvest more than 100-kilo grams daily crops like brinjal but we unable to sell those in local markets. * We are unable to reach urban markets. * We don't have enough transport facilities. * We unable buy require fertilizer and other complements * In the early stage we are facing manpower shortage but later it's not an issue. * We unable to do value-added products. * Waste is very high for somedays Se...

How to use ng-href directive in AngularJS

ng-Href Directive                  ng-Href directive is hyper link markup to a text in angularJs. This hyperlink will change able to implement dynamic url {{hash}} value. Hash value to assign in a controller to happened user click event fire to assign dynamic url. This Value is undefined means it will return to 404 page. ng-Href directive Example  HTML:      <div ng-app="anchor">     <div ng-controller="anchorController">         <a ng-href="http://www.google.com" ng-click="show($event)">Anchor Tag</a>     </div>   </div> Javascript :  var anch = angular.module('anchor', []); anch.controller('anchorController',['$scope', '$window', function($scope, $window){     $scope.show = function(obj) {       $window.open(obj.target.href);     } }]); Result :  Dem...

Google's Neverending Big Adventure

Google's Neverending Big Adventure   Why would Google want to send its Street View cameras into a vast crack in the Earth where there's nary a street to be found? It can't be as simple as "because it can." There must be some financial motive. Perhaps -- but monetization "is not how Google typically thinks about it," said tech analyst Greg Sterling. "This is part of the logic of Google's mission to map the real world in a complete way." In its ongoing effort to create the perfect map of the world at ground level, Google took a trek into the Grand Canyon this week. Although this is part of its Google Maps Street View project, there are of course no streets in the national park. Google Street View Product Manager Ryan Falor Google Street View Product Manager Ryan Falor controls the Trekker with his Android device. Earlier this month, Google announced that it had doubled the number of special collections in its Street View catalo...