Skip to content

Commit fe5f887

Browse files
committed
3.5.3 Release commit - limited dependency ranges
1 parent 4262593 commit fe5f887

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

OneSignalSDK.jar

2 Bytes
Binary file not shown.

OneSignalSDK/onesignal/maven-push.gradle

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,19 @@ class Global {
2424
static def POM_NAME = 'OneSignal'
2525
static def POM_ARTIFACT_ID = 'OneSignal'
2626
static def POM_PACKAGING = 'aar'
27-
static def VERSION_NAME = "3.5.2"
27+
static def VERSION_NAME = "3.5.3"
2828

2929
// Limit upper number (exclusive) to prevent untested versions
3030
static def versionGroupOverrides = [
3131
// Omitting 10.2.0 for now since it increases minimum SDK to 14
32-
'com.google.android.gms': '[8.3.0,10.2.0)',
32+
'com.google.android.gms': '[9.0.0,10.2.0)',
3333
// Android Support library v4 revision 26.0.0 increases minimum SDK to 14
34-
'com.android.support': '[23.0.0,25.4.0)'
34+
35+
// customtabs was not introduced until 23.0.0 so this is the min
36+
// Capping at 24.0.0 as GMS [9.6.0,10.2.4] locks to this
37+
// Also note support v4 splits into parts in 24.2.0.
38+
// Compile errors will happen if versions are mix at and below this revision.
39+
'com.android.support': '[23.0.0,24.1.0)'
3540
]
3641

3742
static def GROUP_ID = 'com.onesignal'

OneSignalSDK/onesignal/src/main/java/com/onesignal/OneSignal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public void init() {
181181
private static TrackGooglePurchase trackGooglePurchase;
182182
private static TrackAmazonPurchase trackAmazonPurchase;
183183

184-
public static final String VERSION = "030502";
184+
public static final String VERSION = "030503";
185185

186186
private static AdvertisingIdentifierProvider mainAdIdProvider = new AdvertisingIdProviderGPS();
187187

0 commit comments

Comments
 (0)