728*90 add style for blog

Thursday, July 23, 2015

Submit iOS app to apple app store

Hi Friends, I am sharing this article to guide for the developer who are going to upload there application to iTunes store

I am not including certificate generation process here

  1. Register yourself with Apple developer program
  2. Login to https://itunesconnect.apple.com
    1. By clicking on Top left PLUS icon you will able to see below dialog
    If this is your first app then you will able to see "Company Name" above to Name column, Here you can add your Company Name if any 
    MAKE SURE - "Company Name" Column will be for the first time only else you will not able to see again anymore so please make sure and take care"
  3. Now add all other details and click "Create" button, You may see screen like below
  4. Add Respective snapshot for your app
  5. Add App Icon which should be 1024*1024 and without any transparency
    • If you facing transparacny then you download application  from http://alphachannelremover.blogspot.in/  and remove trasnsparacy from your App Icon
  6. Now to the changes as per your need else save the changes
  7. Not come to your developer portal because we need to sign the archive 
  8. Visit http://codewithchris.com/submit-your-app-to-the-app-store/ for getting How to create Certificate for Distribution
  9. Now Download and install the Production Certificate 
  10. Select Proper Code Signing identity 
  11. Check for bundle version
  12. Now Select iOS Device in Device list and Go to Product->Archive->Submit
  13. Select your Team
  14. Submit - (xcode will raise error If any with error details)
  15. Please make sure all the things like below
    1. Device you want to target
    2. Version number
    3. NSLog checking - it should be removed

Done!!

Thursday, April 9, 2015

How to Commit on Github

Hi, I am sharing here some steps for git hub commit specially when you are joined some repo as Collaborators and you are trying to commit your side code

So follow below steps to commit your code

  1. git init [If your local folder is not init with git earlier ]
  2. git remote add origin <Repo URL>
  3. git fetch [Will get the code/data from current Remote Repo from github]
  4. git pull <Repo URL>
  5. Now add your local copy to current checkout folder locally
  6. Now check status to confirm that you have correctly added you local copy to the live Git folderby " git status "
  7. Now you will see the latest added file
  8. now add this all file to github with command " git add " and then again checking status you may found file is added
  9. now git commit -m ""
  10. git push <Repo URL>
Done!!

Saturday, April 4, 2015

Install Bitbucket source tree in MAC OS

Hi I'm sharing how to install Sourcetree with maricural support to get the clone of your bitbucket copy code

  1. Check for Github install in MAC ,by default it will be there but you can check from following command
    1. git --version
      1. Required O/p : git version 1.8.1.3
    2. Configure your global username using the following command:
      • git config --global user.name "FIRST_NAME LAST_NAME"
    3. Configure your global email address using the following command:
    4. Install Mercurial
      1. Make sure you have root access (sudo) on the system where you want to install Mercurial
      2. Download and install
      3. Verify the installation was successful by typing the following at the command line.
      4. hg --version [you will see below output ]
        • Mercurial Distributed SCM (version 3.3.1+20150311)
          (see http://mercurial.selenic.com for more information)
          Copyright (C) 2005-2014 Matt Mackall and others
          This is free software; see the source for copying conditions. There is NO
          warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
      5. Determine if you already have a ~/.hgrc file in your environment by entering the following at the command line:
      6. If you get "No such file or directory" then create it by following command
      7. ls ~/.hgrc
      8. Done !!
Now you can use the generated url from bitbucket and use it in Terminal, now you should not get any error of HG command
  1. hg clone https://YOUR-USER-NAME@bitbucket.org/avaiyakirtib/Exampleapp
  2. You will need to ask for password and go on
  3. Done!!


Wednesday, January 28, 2015

Zipalign Tool- Verification FAILED

Hi,
if you are getting message like Verification FAILED while working with manually zipalign your apk, then it may be the problem of your path for the output file,

You may wrote the command like below

./zipalign -c -v 4 /Users/Downloads/app_old.apk test1.apk;

but it totally wrong from zipalign tool

Write the above command as below
./zipalign -c -v 4 /Users/Downloads/app_old.apk /data/subfolder/test1.apk;

and it will work.

Its because zipliagn tool not allowed to write the output file on the same destination.

Payment type font

Hi All,
you can use the custom font same like Fontawesome for various payment integration providers, go to http://paymentfont.io/ and you can check the examples 

Zipaligned tool not found in MAC

Hi all,
Just drag the folder which is having zipalign tool inside to terminal directly without typing manual CD command.