Skip to content

Commit 44fa1e9

Browse files
committed
3.6.0 Release commit
1 parent 98f06ad commit 44fa1e9

File tree

6 files changed

+7
-14
lines changed

6 files changed

+7
-14
lines changed

OneSignalSDK/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ repositories {
3434

3535
dependencies {
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'

OneSignalSDK/onesignal/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

3838
apply from: 'maven-push.gradle'

OneSignalSDK/onesignal/maven-push.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 = [

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727

2828
package com.onesignal;
2929

30-
import android.app.job.JobInfo;
31-
import android.app.job.JobScheduler;
3230
import android.content.ComponentName;
3331
import android.content.Context;
3432
import 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);

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import android.app.job.JobService;
55
import android.os.Build;
66
import android.support.annotation.RequiresApi;
7-
import android.util.Log;
87

98
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
109
abstract 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

OneSignalSDK/unittest/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ repositories {
4040
dependencies {
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'

0 commit comments

Comments
 (0)