Integration of Google analytics in Kony

Hello readers, in this blog we are going to have a fascinating feature i.e. to integrate the Google firebase analytics with Kony. Here we will integrate into the android project. The entire process will cover several steps as mentioned below.

  1. Create account in the firebase and register configure your application.
  2. Create android project and integrate the project with firebase.
  3. Create Kony application and integrate the FFI.
  4. Source code access
(more…)

Implementation of android FFI in Kony(AAR) with callback !!

Today we will learn to integrate android FFI in kony via AAR file. When we need to integrate the native UI elements in kony then we need to create the AAR file instead of JAR files. The entire process will cover under several steps as mentioned.

  1. Create Sample Android application with an activity.
  2. Create kony adapter class in android project.
  3. Generate AAR file from android studio.
  4. Create Kony sample app
  5. Import AAR in kony and configure kony FFI.
  6. Build and run kony application.
(more…)

Xamarin Link sdk assemblies only issue

While working in xamarin I was going thru the Linking options during the build generation. So what is linking in xamarin?

Xamarin applications use a linker in order to reduce the size of the application. The linker employes static analysis of your application to determine which assemblies are actually used, which types are actually used, and which members are actually used. The linker then behaves like a garbage collector, continually looking for the assemblies, types, and members that are referenced until the entire closure of referenced assemblies, types, and members is found. Then everything outside of this closure is discarded. (Referred from Xamarin Docs.) (more…)

Xamarin – Android UI/AXML intellisense is not working with Visual studio 2015

  1. Download this two files (https://raw.githubusercontent.com/atsushieno/monodroid-schema-gen/master/schemas.android.com.apk.res.android.xsd and https://raw.githubusercontent.com/atsushieno/monodroid-schema-gen/master/android-layout-xml.xsd) to “C:\Program Files (x86)\MSBuild\Xamarin\Android” (if there is no such files there).
  2. Start “Developer Command Prompt for VS2015”
  3. Execute “devenv /resetsettings”
  4. Open *.axml file in your solution with “Open with” and select “Automatic editor selector (XML)”gvtpr
  5. If intellisense still not working go to XML -> Schemas, add this schemas manually and restart visual studiod631e

You Will be able to see intellisense in xaml.

Happy coding 🙂

Kony at a glance/ Interview Preparation part 1

Hello, While going thru the internet i found that there is not any document which you can refer to get the idea about kony at a glance. This post will give you high level idea about kony which can also help you if you have your interview tomorrow 😉 . Here we will not cover in details of kony however we will touch most of the corners so you can do the revision. (more…)

Creating Provisioning Profile and Certificate for IOS

Hi, In this post we will discuss the use of provisioning profile and certificate and process to generate it. When you plan to create an IOS app then you might have first two points in mind. 1) How to create the app for test and development. 2) How to distribute the app to end users. For any of these two you need certificate, which denote identity of your authenticate developer license. You need to create the certificate one time at initial stage and that can be use during development and distribution. On the other hand when you are developing the application you need to install the app. at the mobile device in order to test it, for this purpose you must have provisioning profile. provisioning profile will be of two type one is developer version second is distribution version. You can add N no. of devices on which you are planning to test and develop the app. under a developer provisioning profile through mobile UDID. Distribution version provisioning profile app do not required UDID and it can be directly publish to store which can be installed by any user.

Refer below steps to create provisioning profile and certificate. We will show the parallel steps for developer and distribution provisioning profile creation process. (more…)

Publish android application on play store

Today in this section we will discuss show can we upload our application into google playstore. We have a assumption that you have already done with your coding part.

Uploading the app requires few basic steps as mentioned below.

  • Generate Keystore for your application.
  • Get SHA1 key for your application.
  • Generate signed APK of your application.
  • Upload app at play store.

Now let’s discuss one by one each topic.

(more…)

Android(APK) code signing process

In this post we will discuss the code signing process for android application. Before start let me explain you why code signing is required.

  • In order to place your application to Play store.
  • In order to use the map in you application.

Signing the code means you are providing the valid application licence period, details of the organization who is developing the application, alias of the application and so on to the application. Lets have a glance to the way how we sign the code . (more…)