Skip to content

Commit

Permalink
Pushwoosh Android SDK 6.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Mar 11, 2024
1 parent 2ab0f26 commit a5c0e97
Show file tree
Hide file tree
Showing 52 changed files with 492 additions and 387 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ Maven integration:
<dependency>
<groupId>com.pushwoosh</groupId>
<artifactId>pushwoosh</artifactId>
<version>6.7.4</version>
<version>6.7.5</version>
</dependency>

The sample projects are available here:
Expand Down
3 changes: 0 additions & 3 deletions Sources/.idea/.gitignore

This file was deleted.

Binary file removed Sources/.idea/caches/build_file_checksums.ser
Binary file not shown.
116 changes: 0 additions & 116 deletions Sources/.idea/codeStyles/Project.xml

This file was deleted.

6 changes: 0 additions & 6 deletions Sources/.idea/compiler.xml

This file was deleted.

17 changes: 0 additions & 17 deletions Sources/.idea/deploymentTargetDropDown.xml

This file was deleted.

33 changes: 0 additions & 33 deletions Sources/.idea/gradle.xml

This file was deleted.

35 changes: 0 additions & 35 deletions Sources/.idea/jarRepositories.xml

This file was deleted.

6 changes: 0 additions & 6 deletions Sources/.idea/kotlinc.xml

This file was deleted.

60 changes: 0 additions & 60 deletions Sources/.idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions Sources/.idea/vcs.xml

This file was deleted.

2 changes: 1 addition & 1 deletion Sources/build.gradle
Expand Up @@ -36,7 +36,7 @@ subprojects {
ext.global_minSdkVersion = 23
ext.global_compileSdkVersion = 33
ext.global_targetVersion = 34
ext.global_versionName = "6.7.4"
ext.global_versionName = "6.7.5"
ext.global_targetGroupId = "com.pushwoosh"

ext.googlePlayService = "18.1.0"
Expand Down
@@ -0,0 +1,7 @@
package com.pushwoosh.exception;

public class GroupIdNotFoundException extends PushwooshException{
public GroupIdNotFoundException(String description) {
super(description);
}
}
@@ -1,4 +1,7 @@
package com.pushwoosh.exception;

public class NotificationIdNotFoundException extends Exception{
public class NotificationIdNotFoundException extends PushwooshException{
public NotificationIdNotFoundException(String description) {
super(description);
}
}

0 comments on commit a5c0e97

Please sign in to comment.