Posts

Aspect Oriented Programming (AOP) vs OOP

Aspect Oriented Programming: Prior to study of AOP you must understand few terminologies in terms of programming . Aspect concern core concern cross cutting concern   Description: Aspect: Concern: Core Concern: Cross Cutting Concern: Now what is AOP? It is specialized programming methodology using which " cross cutting concern"  is dynamically decoupled from " core concern"   The key unit of modularity in AOP is the  aspect . Aspects enable the modularization of concerns such as transaction management that cut across multiple types and objects.  AOP is not replacement for OOP core concern is modularized using OOP whereas crosscutting concern is modularized using AOP .

Integrating Facebook Login in Your Android Application

How To Generate  Development And Release Key Hashes: (for windows ) 1- open you cmd and type this command : keytool - exportcert - alias androiddebugkey - keystore % HOMEPATH % \.android\debug . keystore | openssl sha1 - binary | openssl base64 Note:- make sure that your your environment variable is set for JAVA,other wise locate keytool.exe in your java folder and type the above command. In the above command locate the openssl.exe and write the full path ,only writing openssl may not work.   openssl.exe exists inside "C:\OpenSSL-Win64\bin" if command is typed correctly then it will ask for keystore password. Default password for   debug . keystore is " android " after successfully completing this process it will generate key value in the cmd. copy that and use it where it is required. remember it is  Development Key Hash

Applets and Digital Certificates

Note : Applets are vulnerable to attacks and therefor unsigned Applets are restricted from Java 7 and above .Only signed Applets are supported and allowed to execute.

PhoneGap

follow the below steps to quickly setup development environment for phonegap in windows : 1-       Download phonegap and extract to a folder in your computer Link: http://phonegap.com/install/ 2-       Download ant if u don’t have that installed in your system and extract to a folder in your                                                                                          computer. Link: http://ant.apache.org/bindownload.cgi 3-       You must have had java installed...
  My first Android application.I have developed this application  in collaboration with my friends.