Steps to publish Android Application
One may follow the steps given below to publish application on Google Play Store.
Assuming, you already have Developer Account on Google.
One may follow the steps given below to publish application on Google Play Store.
Assuming, you already have Developer Account on Google.
If you’re considering developing a new mobile project, use React Native – you won’t regret it. Here is 9 reasons why you should consider React Native for your Mobile Application Development.
How can we convert a JSON Object to string?
for example, if you have a JSON object as given below
1 2 3 4 |
var user = { "name": "Jacob Nelson", "role": "Story\n Manager" } |
using toString will not help.
This post will help you to setup a sonarqube project to scan your source code. Follow these steps.
Dependency with JDK Make sure, JDK is downloaded and installed.
It is not an easy task to Build application, deploy it in emulator, relaunch and test, when we make changes.
Ionic provides an solution for this tedious process which is called live reload.
You can use the following command for live reload your ionic mobile application.
While developing a mobile application, you may need to check your application in multiple devices. It is not economically viable to buy all targeted device for development and testing. The easiest way is to test the application on emulators.
Before start testing, you may need to know what all virtual devices are available in your development environment.
To list out all available virtual devices, you may use one of the two commands listed below, from your application folder.
The text-overflow CSS property helps us to handle the situation where the content overflowed out of the container. The ideal way is to show ellipsis to signal users that there is more content. But text-overflow alone cannot help to achieve this effect. we should have a combination of CSS properties to get Ellipsis effect.
Publishing blog posts on social media will help you to promote your blog content or landing page, increase traffic to your website, and reap the SEO benefits of being active on social media.
With Jetpack plugin, one can publish a message to all of your social media channels at once to save time.
Step 1: Logon to admin panel of you wordpress blog and go to Jetpack settings.
Step 2: Go to Sharing tab of Jetpack plugin screen and click on connect you social media account link. This will take you to wordpress website.
Sometimes, it is useful to see the list of packages that you have installed on your system. You can do that with the following commands:
# list all installed modules with dependencies
1 |
npm ls |
# list all installed modules without dependencies
1 |
npm ls --depth=0 |
# list all installed globally dependencies
1 |
npm ls -g --depth=0 |