Skip to content

Commit 52a55d2

Browse files
committed
Release 1.1.7
1 parent eae4a59 commit 52a55d2

File tree

8 files changed

+29
-13
lines changed

8 files changed

+29
-13
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# CHANGELOG
22

3+
## 1.1.7 (released 08.05.2018)
4+
5+
- LIBcc10508
6+
- LIBff10507 Ability to limit the display of the dialog within a 365-day period
7+
- LIBcc10503
8+
- LIBff10503
9+
- LIBff10501
10+
- LIBbb20501
11+
- LIBcc10501
12+
- LIBbb10501
13+
- LIBcc20430
14+
- LIBbb10430 Fix for AppRate.with(this).clearSettingsParam();
15+
- LIBcc10430
16+
- LIBcc10426
17+
318
## 1.1.6 (released 25.04.2018)
419

520
- LIBff10424

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ org.gradle.caching =true
1111
android.enableD8.desugaring =true
1212
android.enableR8 =true
1313

14-
VERSION_NAME =1.1.6
15-
VERSION_CODE =40
14+
VERSION_NAME =1.1.7
15+
VERSION_CODE =41
1616
GROUP =com.vorlonsoft
1717

1818
POM_DESCRIPTION =Library for Android applications, which provides rating dialog.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Mon Apr 16 06:01:23 MSK 2018
1+
#Tue May 08 07:37:39 MSK 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
//noinspection MinSdkTooLow
1414
minSdkVersion 9
1515
targetSdkVersion 27
16-
versionCode 40
17-
versionName '1.1.6'
16+
versionCode 41
17+
versionName '1.1.7'
1818
}
1919
compileOptions {
2020
sourceCompatibility JavaVersion.VERSION_1_8

library/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
88
xmlns:tools="http://schemas.android.com/tools"
99
package="com.vorlonsoft.android.rate"
10-
android:versionCode="40"
11-
android:versionName="1.1.6"
10+
android:versionCode="41"
11+
android:versionName="1.1.7"
1212
tools:ignore="GradleOverrides">
1313

1414
<application/>

library/src/main/java/com/vorlonsoft/android/rate/AppRate.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ private boolean isBelow365DayPeriodMaxNumberDialogLaunchTimes() {
116116
/**
117117
* Set Short.MAX_VALUE for unlimited occurrences of the display of the dialog within a 365-day period
118118
*/
119+
@SuppressWarnings({"unused"})
119120
public AppRate set365DayPeriodMaxNumberDialogLaunchTimes(short dialogLaunchTimes){
120121
this.dialogLaunchTimes = dialogLaunchTimes;
121122
return this;
@@ -275,15 +276,15 @@ public AppRate setStoreType(@StoreType.StoreWithApplicationId final int storeTyp
275276
return ((storeType != APPLE) && (storeType != BLACKBERRY)) ? setStoreType(storeType, null, null) : setStoreType(storeType, new String[]{String.valueOf(applicationId)}, null);
276277
}
277278

278-
@SuppressWarnings({"ConstantConditions", "WeakerAccess"})
279+
@SuppressWarnings({"ConstantConditions", "WeakerAccess", "unused"})
279280
public AppRate setStoreType(@NonNull final String... uris) {
280281
if (uris == null) {
281282
throw new IllegalArgumentException("setStoreType(String... uris): 'uris' must be != null");
282283
}
283284
return setStoreType(OTHER, uris, null);
284285
}
285286

286-
@SuppressWarnings({"ConstantConditions", "WeakerAccess"})
287+
@SuppressWarnings({"ConstantConditions", "WeakerAccess", "unused"})
287288
public AppRate setStoreType(@NonNull final Intent... intents) {
288289
if (intents == null) {
289290
throw new IllegalArgumentException("setStoreType(Intent... intents): 'intents' must be != null");

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
applicationId 'com.vorlonsoft.android.rate.sample'
1414
minSdkVersion 14
1515
targetSdkVersion 27
16-
versionCode 12
17-
versionName '1.1.10'
16+
versionCode 13
17+
versionName '1.1.11'
1818
}
1919
compileOptions {
2020
sourceCompatibility JavaVersion.VERSION_1_8

sample/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
88
xmlns:tools="http://schemas.android.com/tools"
99
package="com.vorlonsoft.android.rate.sample"
10-
android:versionCode="12"
11-
android:versionName="1.1.10"
10+
android:versionCode="13"
11+
android:versionName="1.1.11"
1212
tools:ignore="GradleOverrides">
1313

1414
<application

0 commit comments

Comments
 (0)