Skip to content

Commit

Permalink
Release 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderLS committed May 8, 2018
1 parent eae4a59 commit 52a55d2
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 13 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# CHANGELOG

## 1.1.7 (released 08.05.2018)

- LIBcc10508
- LIBff10507 Ability to limit the display of the dialog within a 365-day period
- LIBcc10503
- LIBff10503
- LIBff10501
- LIBbb20501
- LIBcc10501
- LIBbb10501
- LIBcc20430
- LIBbb10430 Fix for AppRate.with(this).clearSettingsParam();
- LIBcc10430
- LIBcc10426

## 1.1.6 (released 25.04.2018)

- LIBff10424
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ org.gradle.caching =true
android.enableD8.desugaring =true
android.enableR8 =true

VERSION_NAME =1.1.6
VERSION_CODE =40
VERSION_NAME =1.1.7
VERSION_CODE =41
GROUP =com.vorlonsoft

POM_DESCRIPTION =Library for Android applications, which provides rating dialog.
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Mon Apr 16 06:01:23 MSK 2018
#Tue May 08 07:37:39 MSK 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
//noinspection MinSdkTooLow
minSdkVersion 9
targetSdkVersion 27
versionCode 40
versionName '1.1.6'
versionCode 41
versionName '1.1.7'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down
4 changes: 2 additions & 2 deletions library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.vorlonsoft.android.rate"
android:versionCode="40"
android:versionName="1.1.6"
android:versionCode="41"
android:versionName="1.1.7"
tools:ignore="GradleOverrides">

<application/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ private boolean isBelow365DayPeriodMaxNumberDialogLaunchTimes() {
/**
* Set Short.MAX_VALUE for unlimited occurrences of the display of the dialog within a 365-day period
*/
@SuppressWarnings({"unused"})
public AppRate set365DayPeriodMaxNumberDialogLaunchTimes(short dialogLaunchTimes){
this.dialogLaunchTimes = dialogLaunchTimes;
return this;
Expand Down Expand Up @@ -275,15 +276,15 @@ public AppRate setStoreType(@StoreType.StoreWithApplicationId final int storeTyp
return ((storeType != APPLE) && (storeType != BLACKBERRY)) ? setStoreType(storeType, null, null) : setStoreType(storeType, new String[]{String.valueOf(applicationId)}, null);
}

@SuppressWarnings({"ConstantConditions", "WeakerAccess"})
@SuppressWarnings({"ConstantConditions", "WeakerAccess", "unused"})
public AppRate setStoreType(@NonNull final String... uris) {
if (uris == null) {
throw new IllegalArgumentException("setStoreType(String... uris): 'uris' must be != null");
}
return setStoreType(OTHER, uris, null);
}

@SuppressWarnings({"ConstantConditions", "WeakerAccess"})
@SuppressWarnings({"ConstantConditions", "WeakerAccess", "unused"})
public AppRate setStoreType(@NonNull final Intent... intents) {
if (intents == null) {
throw new IllegalArgumentException("setStoreType(Intent... intents): 'intents' must be != null");
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId 'com.vorlonsoft.android.rate.sample'
minSdkVersion 14
targetSdkVersion 27
versionCode 12
versionName '1.1.10'
versionCode 13
versionName '1.1.11'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down
4 changes: 2 additions & 2 deletions sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.vorlonsoft.android.rate.sample"
android:versionCode="12"
android:versionName="1.1.10"
android:versionCode="13"
android:versionName="1.1.11"
tools:ignore="GradleOverrides">

<application
Expand Down

0 comments on commit 52a55d2

Please sign in to comment.