shuklaxyz.blogspot.com
Shailesh Shukla Android Life: Google Map API key genaration in ubuntu for Android?
http://shuklaxyz.blogspot.com/2012/07/google-map-api-key-genaration-in-ubuntu.html
Shailesh Shukla Android Life. Monday, July 9, 2012. Google Map API key genaration in ubuntu for Android? Shailesh@shailesh-desktop: $ cd /. Then we want to get the keystore.To get the android default debug keystore:. Eclipse- windows- preferences- Android - Build, then copy the default debug keystore. Eg: /home/shailesh/.android/debug.keystore. Shailesh@shailesh-desktop:/usr/lib/jvm/java-6-openjdk/bin$ keytool -list -alias androiddebugkey -keystore /home/shailesh/.android/debug.keystore. First of all we ...
shuklaxyz.blogspot.com
Shailesh Shukla Android Life: Convert Seconds into HH:MM:SS in java?
http://shuklaxyz.blogspot.com/2012/12/convert-seconds-into-hhmmss-in-java.html
Shailesh Shukla Android Life. Tuesday, December 18, 2012. Convert Seconds into HH:MM:SS in java? Below are the methods to convert seconds into minute seconds format. Int day = (int)TimeUnit.SECONDS.toDays(seconds);. Long hours = TimeUnit.SECONDS.toHours(seconds) - (day *24);. Long minute = TimeUnit.SECONDS.toMinutes(seconds) - (TimeUnit.SECONDS.toHours(seconds)* 60);. Long second = TimeUnit.SECONDS.toSeconds(seconds) - (TimeUnit.SECONDS.toMinutes(seconds) *60);. TimeUnit.DAYS.toHours(day);. First of all ...
shuklaxyz.blogspot.com
Shailesh Shukla Android Life: May 2014
http://shuklaxyz.blogspot.com/2014_05_01_archive.html
Shailesh Shukla Android Life. Tuesday, May 27, 2014. Android Host Card Emulation(HCE) in 4.4? Q What is HCE? A Host-Based Card Emulation. Before we talk about HCE (Host-Based Card Emulation) we must understand what is CE (Card Emulation). Card Emulation is as it says emulation of a card (CreditCard/ ID Card/ Loyalty Card / any card) over NFC interface of a mobile phone. I understand NFC but whats Card Emulation? Woaahhh 2 NEW TERMS! So Card Emulation basically says that in order to communicate with this ...
shuklaxyz.blogspot.com
Shailesh Shukla Android Life: APNS SSL Error - javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure?
http://shuklaxyz.blogspot.com/2013/06/apns-ssl-error.html
Shailesh Shukla Android Life. Thursday, June 20, 2013. APNS SSL Error - javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake failure? 1 Created certificates from mac machine. 2 in tomcat server application using JavaPNS to send the notification. Used Push.alert(.) used .p12 file. Javaxnet.ssl.SSLHandshakeException: Received fatal alert: handshake failure. I finally find the problem is due to the p12 certificate. We should not use the private key p12 file, instead we. Out iphone dev.p12.
shuklaxyz.blogspot.com
Shailesh Shukla Android Life: Difference between AES and RSA Encryption?
http://shuklaxyz.blogspot.com/2012/02/difference-between-aes-and-rsa.html
Shailesh Shukla Android Life. Wednesday, February 8, 2012. Difference between AES and RSA Encryption? AES is a symmetric cryptographic algorithm, while RSA is an asymmetric (or public key) cryptographic algorithm. Encryption and decryption is done with a single key in AES, while you use separate keys (public and private keys) in RSA. The strength of a 128-bit AES key is roughly equivalent to 2600-bits RSA key. The last uses the four transformations. February 27, 2012 at 8:34 AM. May 14, 2014 at 2:15 AM.
mlabeca.com
For developers
http://www.mlabeca.com/eng/resources1/for-developers
IPhone, iOS SDK (Objective-C, C/C ). Xcode 4 for Mac OS X and iOS. Http:/ developer.apple.com/xcode/index.php. Http:/ developer.apple.com/devcenter/ios/index.action. Http:/ developer.apple.com/library/ios/navigation/. IOS Developer Program Enrollment. Http:/ developer.apple.com/programs/ios/. Other developer sites (communities and repositories). Http:/ developers.facebook.com/docs/tutorials/ios-sdk-tutorial/. Http:/ projectswithlove.com/projects/index.html. Http:/ ios.wordpress.org/development/. Http:/ m...
zuberr.com
Android Development | Learning By Sharing
http://www.zuberr.com/resources/android-development
A Technology Blog By Zuberr Nowrung. I believe the very first go-to resource for Android development has to be StackOverflow. I have found answers to most of my problems already answered there. Chances are, someone has already been in the situation you are. If you prefer viewing instead of reading, you will come up with tons of helpful video tutorials by simply doing a search on Youtube. Another great place where you can find a list of Android tutorials is Mobile Tuts. Making Money With Android.
shuklaxyz.blogspot.com
Shailesh Shukla Android Life: Eclipse Error : Using 1.7 requires using Android Build Tools version 19 or later; currently using 17.0.0 ?
http://shuklaxyz.blogspot.com/2014/06/eclipse-error-using-17-requires-using.html
Shailesh Shukla Android Life. Monday, June 2, 2014. Eclipse Error : Using 1.7 requires using Android Build Tools version 19 or later; currently using 17.0.0? The project shows this error when relevant build tool is not set for the Project. First goto Eclipse- Windows- - Android SDK Manager and installed the relevant build tool required by the application.After installation is completed close the SDK manager. Then add the below line in "project.properties" file of then prject.Error will be resolved. How t...
shuklaxyz.blogspot.com
Shailesh Shukla Android Life: How to install PhoneGap Eclipse PlugIn for Android?
http://shuklaxyz.blogspot.com/2012/03/how-to-install-phonegap-eclipse-plugin.html
Shailesh Shukla Android Life. Tuesday, March 6, 2012. How to install PhoneGap Eclipse PlugIn for Android? In Eclipse Indigo or Helios (Classic or Java) ADT, Select Help - Install New Software. If you don't yet have the ADT (Android Development Tools) download from https:/ dl-ssl.google.com/android/eclipse/. See http:/ developer.android.com/sdk/eclipse-adt.html. Click Add to enter a new Repository site. The Name field is optional, "MDS PhoneGap for Android Plug-In 1.2" suggested. July 2, 2012 at 8:09 AM.