Skip to content

Instantly share code, notes, and snippets.

View vkdinventor's full-sized avatar
💭
Hope for the best, Prepare for the worst.

vikash vkdinventor

💭
Hope for the best, Prepare for the worst.
  • Delhi India
View GitHub Profile

Privacy Policy

vikash verma built the Only Fun app as an Ad Supported app. This SERVICE is provided by vikash verma at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Only Fun unless otherwise defined in this Privacy Policy.

Privacy Policy

vikash verma built the JustPlay videos app as an Ad Supported app. This SERVICE is provided by vikash verma at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at JustPlay unless otherwise defined in this Privacy Policy.

# ScreenShot Generator
* https://theapplaunchpad.com/
* https://screenshots.appure.io/apps
* https://appinstitute.com/app-screenshot-maker/screenshot?platform=android 100% free
* https://launchkit.io/screenshots/
# Rest API test
* https://reqres.in/
* Json to java object creator online http://www.jsonschema2pojo.org/
@vkdinventor
vkdinventor / TimeConverter.java
Created April 1, 2017 18:31
Converting Youtube Data API V3 video duration (e.g. PT1H9M24S ) to hh:mm:ss format in java
package com.vkdinventor.code;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by vikash on 01-04-2017.
*/
public class TimeConverter {
Hope it's not too late, here is some advices :
Launch your app at the end of the week ( thursday afternoon is usually a good time ) why so ? well, no companies would like to publish an app only 1.5 day before the week end -> too dangerous ( in case there is a problem that needs a quick reaction time )
Use proguard on your app ( usually, you just have to add this line : proguard.config=proguard.cfg in the default.properties file) this will optimize, shrink and obfuscate your code, very useful for preventing from code thieves. You don't have to delete any comments, there are automatically deleted at compile time
Optimize your images ( using Paint.NET, PNGCrush or OptiPNG )
Optimize your layouts for most of screen sizes. You can doing this by simply changing the screen size while editing a layout in AndroidStudio or eclipse
Try/Catch all exceptions on the UI and display a simple toast wich indicate to the user that something wrong happened. In the meantime, retrieve the error with the help the ACRA of Crashlyti