File tree Expand file tree Collapse file tree 6 files changed +7
-14
lines changed
src/main/java/com/onesignal Expand file tree Collapse file tree 6 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ repositories {
3434
3535dependencies {
3636 compile fileTree(dir : ' libs' , include : [' *.jar' ])
37- compile ' com.android.support:appcompat-v7:26.0.0 '
37+ compile ' com.android.support:appcompat-v7:26.0.1 '
3838
3939 // Use for SDK Development
4040 compile(project(' :onesignal' )) {
@@ -77,7 +77,7 @@ dependencies {
7777 // compile 'com.android.support:support-core-utils:24.2.1'
7878
7979 // For Chrome tabs
80- compile ' com.android.support:customtabs:26.0.0 '
80+ compile ' com.android.support:customtabs:26.0.1 '
8181
8282
8383// debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ dependencies {
3131 compile ' com.google.android.gms:play-services-gcm:11.0.4'
3232 compile ' com.google.android.gms:play-services-location:11.0.4'
3333
34- compile ' com.android.support:support-v4:26.0.0 '
35- compile ' com.android.support:customtabs:26.0.0 '
34+ compile ' com.android.support:support-v4:26.0.1 '
35+ compile ' com.android.support:customtabs:26.0.1 '
3636}
3737
3838apply from : ' maven-push.gradle'
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ 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 = ' 4.0.0-SNAPSHOT '
27+ static def VERSION_NAME = ' 3.6.0 '
2828
2929 // Limit upper number (exclusive) to prevent untested versions
3030 static def versionGroupOverrides = [
Original file line number Diff line number Diff line change 2727
2828package com .onesignal ;
2929
30- import android .app .job .JobInfo ;
31- import android .app .job .JobScheduler ;
3230import android .content .ComponentName ;
3331import android .content .Context ;
3432import android .content .Intent ;
@@ -116,8 +114,6 @@ public static void restore(Context context) {
116114 }
117115
118116 // NOTE: This can be running from a Application, Service, or JobService context.
119- // TODO: Android O - NotificationExtenderService compatibility
120- // 1. Query services that match action and instance a class.
121117 static void showNotifications (Context context , Cursor cursor ) {
122118 if (cursor .moveToFirst ()) {
123119 boolean useExtender = (NotificationExtenderService .getIntent (context ) != null );
Original file line number Diff line number Diff line change 44import android .app .job .JobService ;
55import android .os .Build ;
66import android .support .annotation .RequiresApi ;
7- import android .util .Log ;
87
98@ RequiresApi (api = Build .VERSION_CODES .LOLLIPOP )
109abstract class OneSignalJobServiceBase extends JobService {
@@ -31,8 +30,6 @@ public void run() {
3130
3231 @ Override
3332 public boolean onStopJob (JobParameters jobParameters ) {
34- // TODO: Check if this normally fires. When jobFinished is called maybe?
35- Log .e ("OneSignal" , "OneSignalJobServiceBase.onStopJob!!!!!!!!!!!!!!!!!!!!!!!" );
3633 return true ;
3734 }
3835
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ repositories {
4040dependencies {
4141 compile fileTree(dir : ' libs' , include : [' *.jar' ])
4242
43- compile ' com.android.support:support-v4:26.0.0 '
43+ compile ' com.android.support:support-v4:26.0.1 '
4444
4545// compile 'com.android.support:support-compat:26.0.0'
4646// compile 'com.android.support:support-media-compat:26.0.0'
@@ -75,7 +75,7 @@ dependencies {
7575
7676 // compile 'com.google.android.gms:play-services-analytics:7.0.0'
7777
78- compile ' com.android.support:customtabs:26.0.0 '
78+ compile ' com.android.support:customtabs:26.0.1 '
7979
8080 testCompile ' junit:junit:4.12'
8181 testCompile ' org.robolectric:robolectric:3.4.2'
You can’t perform that action at this time.
0 commit comments