Skip to content

Instantly share code, notes, and snippets.

View rahulspace's full-sized avatar
🚴‍♂️
Speed up

Rahul rahulspace

🚴‍♂️
Speed up
View GitHub Profile
@rahulspace
rahulspace / Upload apk to Google Play Store.md
Last active April 26, 2018 06:25
Upload apk to Google Play Store

Upload apk to Google Play Store

  1. log in into Google play account. https://play.google.com/apps/publish/
  2. Click All Applications then click + Add new application
  3. Select Default Language, type Title of app and click Upload APK
  4. Click Upload your first APK to Production and browse apk to upload
  5. Click Store Listing side menu
  6. Enter following details about the app
    • Title : App name
    • Short Description : Initial text that user will see
  • Full Description : Detailed description less than 4000 characters
@rahulspace
rahulspace / upload app to iTunes connect.md
Last active April 26, 2018 06:20
upload app to iTunes connect

Upload app to iTunes Connect

  1. Sign in to iTunes Connect account https://itunesconnect.apple.com and accept the terms and services
  2. Click My Apps
  3. Click + and select New iOS App
  4. Fill these fields and click Create
    • Company Name : Name of company
    • Name : Name of app
    • Primary language : The language used to enter the details of app
  • Bundle ID : Unique ID to identify app for updates (can't change later)
@rahulspace
rahulspace / git-setup.md
Last active March 4, 2018 15:23
Git Setup

Git Setup

Setting git user name

$ git config --global user.name "<user name>"

Setting git user email

$ git config --global user.email "<user email>"

Initialising git

$ git init

@rahulspace
rahulspace / install-ionic.md
Last active February 18, 2018 15:37
Install ionic

Install node

$ sudo apt-get update

$ sudo apt-get install nodejs

Make sure node and npm installed successfully

$ node -v

$ npm -v