Skip to content

Commit

Permalink
Updated to Android native SDK 2.6.0
Browse files Browse the repository at this point in the history
* Includes support for background images
  • Loading branch information
jkasten2 committed Jul 8, 2016
1 parent d5d8f4a commit de0d4aa
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 35 deletions.
17 changes: 0 additions & 17 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -38,23 +38,6 @@ Includes portions from the Google GcmClient demo project:
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Includes Android Asynchronous Http Client:
Android Asynchronous Http Client
Copyright (c) 2011 James Smith <james@loopj.com>
http://loopj.com

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Includes Portions Copyright 2014 StackMob:
Copyright 2014 StackMob
Expand Down
Binary file modified Unity4.6-4.7OneSignalSDK.unitypackage
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,51 @@
package="com.onesignal.onesignalsdk"
android:versionName="1.0"
android:versionCode="1">
<application>
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />

<receiver android:name="com.onesignal.NotificationOpenedReceiver" />
<service android:name="com.onesignal.GcmIntentService" />
<service android:name="com.onesignal.SyncService" android:stopWithTask="false" />
<activity android:name="com.onesignal.PermissionsActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar" />
</application>

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<!-- START: ShortcutBadger -->
<!--for Samsung-->
<!-- Samsung -->
<uses-permission android:name="com.sec.android.provider.badge.permission.READ"/>
<uses-permission android:name="com.sec.android.provider.badge.permission.WRITE"/>

<!--for htc-->
<!-- HTC -->
<uses-permission android:name="com.htc.launcher.permission.READ_SETTINGS"/>
<uses-permission android:name="com.htc.launcher.permission.UPDATE_SHORTCUT"/>

<!--for sony-->
<!-- Sony -->
<uses-permission android:name="com.sonyericsson.home.permission.BROADCAST_BADGE"/>

<!--for apex-->
<!-- Apex -->
<uses-permission android:name="com.anddoes.launcher.permission.UPDATE_COUNT"/>

<!--for solid-->
<!-- Solid -->
<uses-permission android:name="com.majeur.launcher.permission.UPDATE_BADGE"/>
<!-- End: ShortcutBadger -->

<application>
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />

<receiver android:name="com.onesignal.NotificationOpenedReceiver" />
<service android:name="com.onesignal.GcmIntentService" />
<service android:name="com.onesignal.SyncService" android:stopWithTask="false" />
<activity android:name="com.onesignal.PermissionsActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar" />
<service android:name="com.onesignal.NotificationRestoreService" />
<receiver android:name="com.onesignal.BootUpReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
</intent-filter>
</receiver>
<receiver android:name="com.onesignal.UpgradeReceiver" >
<intent-filter>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
</intent-filter>
</receiver>
</application>
</manifest>
Binary file not shown.
2 changes: 1 addition & 1 deletion Unity4.6OneSignalExample/Assets/Plugins/OneSignal/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.1
1.15.0
Binary file not shown.
2 changes: 1 addition & 1 deletion Unity5OneSignalExample/Assets/OneSignal/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.1
1.15.0
2 changes: 1 addition & 1 deletion Unity5OneSignalExample/Library/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ PlayerSettings:
virtualRealitySupported: 0
productGUID: f32b3d226d3a9c64fa6ee7b4a12a6a34
AndroidBundleVersionCode: 1
AndroidMinSdkVersion: 22
AndroidMinSdkVersion: 10
AndroidPreferredInstallLocation: 0
aotOptions:
apiCompatibilityLevel: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ PlayerSettings:
virtualRealitySupported: 0
productGUID: f32b3d226d3a9c64fa6ee7b4a12a6a34
AndroidBundleVersionCode: 1
AndroidMinSdkVersion: 22
AndroidMinSdkVersion: 10
AndroidPreferredInstallLocation: 0
aotOptions:
apiCompatibilityLevel: 2
Expand Down
Binary file modified Unity5OneSignalSDK.unitypackage
Binary file not shown.

0 comments on commit de0d4aa

Please sign in to comment.