File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
src/main/java/com/onesignal Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,19 @@ class Global {
24
24
static def POM_NAME = ' OneSignal'
25
25
static def POM_ARTIFACT_ID = ' OneSignal'
26
26
static def POM_PACKAGING = ' aar'
27
- static def VERSION_NAME = " 3.5.2 "
27
+ static def VERSION_NAME = " 3.5.3 "
28
28
29
29
// Limit upper number (exclusive) to prevent untested versions
30
30
static def versionGroupOverrides = [
31
31
// 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)' ,
33
33
// 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)'
35
40
]
36
41
37
42
static def GROUP_ID = ' com.onesignal'
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ public void init() {
181
181
private static TrackGooglePurchase trackGooglePurchase ;
182
182
private static TrackAmazonPurchase trackAmazonPurchase ;
183
183
184
- public static final String VERSION = "030502 " ;
184
+ public static final String VERSION = "030503 " ;
185
185
186
186
private static AdvertisingIdentifierProvider mainAdIdProvider = new AdvertisingIdProviderGPS ();
187
187
You can’t perform that action at this time.
0 commit comments