com.vorlonsoft.android.rate.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidrate Show documentation
Show all versions of androidrate Show documentation
Library to help you promote your Android app by prompting users to rate the app after using it for a few days.
The newest version!
package com.vorlonsoft.android.rate;
/**
* Constants Class - constants class of the AndroidRate library.
*
* @since 1.1.8
* @version 1.2.1
* @author Alexander Savin
*/
final class Constants {
private Constants() {
throw new AssertionError();
}
/**
* Constants.Date Class - date constants class of the AndroidRate library.
*
* @since 1.1.8
* @version 1.2.1
* @author Alexander Savin
*/
final static class Date {
static final short YEAR_IN_DAYS = (short) 365;
private Date() {
throw new AssertionError();
}
}
/**
* Constants.Utils Class - utils constants class of the AndroidRate library.
*
* @since 1.1.8
* @version 1.2.1
* @author Alexander Savin
*/
final static class Utils {
static final String TAG = "ANDROIDRATE";
private Utils() {
throw new AssertionError();
}
}
}