Posts

Showing posts from February, 2015

How to Apply CSS Media Queries for different mobile devices (Html 5 App)

Media Queries " The   Media Queries  consists of a media type and zero or more  expressions  that check for the conditions of particular  media features ."   F eatures   like :  Browser window (width and height ). Device screen size (width and height) & Resolution. Orientation (landscape or portrait mode). Resolution.   iPhone : //iPad 1, iPad 2, iPad Mini @media only screen and (min-width: 768px) and (-webkit-device-pixel-ratio: 1) //iPad 3, iPad 4 @media only screen and (min-width: 768px) and (-webkit-device-pixel-ratio: 2)  //iPhone 3G @media only screen and (min-width: 320px) and (-webkit-device-pixel-ratio: 1)   //iPhone 4 @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2)   //iPhone 5 @media only screen and (min-width: 320px) and (min-height: 568px) and (-webkit-device-pixel-ratio: 2)   //iPhone 6 @media only screen and (min-width: 375px) and (min-height: 667px) and

Interview Questions and Answers - Android

Image
Basics :2 1# :  Explain file and folder after create new android application   After Create Android application the following files & folders in the package explorer in eclipse : src : Contains the .java source & write the code for application in this file. files are available under the package name for project. gen  : Contains the R.java file. It is compiler-generated file that references all the resources found in project & auto generate files when build project. library( Android &  Android Private Libraries   )  :  Contains android.jar file, which contains all the class libraries needed for an Android application. assets :  Contains all the information about HTML file, text files, databases, etc. & All external files. bin: Contains the .apk (Android Package) file is the application binary file. generated by the ADT during the build process.  libs :  Contains android.jar file res: Contains all the resource files & layout details for ap

Apple iTune Beta Testing with TestFlight (iOS 8)

Image
"   TestFlight Beta Testing makes it easy to invite users to test your  iOS 8 apps  before you release them on the App Store. You can invite up to 1,000 external testers using just their email address . "  iTune Beta Testing with TestFlight (iOS 8) Required Basic Same Basic Steps:-   1)  Build and setup with Xcode (6.1 or Latest Version) .  2) iTunes Connect (Developer Account).  3) Inviting TestFlight Beta Testers (Internal & External Testers).        4) TestFlight App for iOS ( Download on the App Store ).  5) Open TestFlight App And Install Beta Testing App. 1)  Build and setup with Xcode (6.1 or Latest Version)        "64-bit and iOS 8 Requirements for New Apps Starting February 1, 2015, new iOS apps uploaded to the App Store must include 64-bit support and be built with the iOS 8 SDK, included in Xcode 6 or later. To enable 64-bit in your project, we recommend using the default Xcode build setting of “Standard architectures” to build a sing