Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
react-native-notifications
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Jira
Jira
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
冷佳娟
react-native-notifications
Commits
91ceadbe
Commit
91ceadbe
authored
Sep 25, 2016
by
Lidan Hifi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
upgrade example app to RN 0.34 and React 15.3
parent
e9b38976
Changes
15
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
169 additions
and
251 deletions
+169
-251
RNNotifications/RNNotifications.m
RNNotifications/RNNotifications.m
+2
-2
example/.flowconfig
example/.flowconfig
+24
-62
example/.gitignore
example/.gitignore
+1
-0
example/android/app/BUCK
example/android/app/BUCK
+1
-1
example/android/app/build.gradle
example/android/app/build.gradle
+17
-4
example/android/app/proguard-rules.pro
example/android/app/proguard-rules.pro
+6
-7
example/android/app/src/main/java/com/notificationsexampleapp/MainActivity.java
...c/main/java/com/notificationsexampleapp/MainActivity.java
+0
-25
example/android/app/src/main/java/com/notificationsexampleapp/MainApplication.java
...ain/java/com/notificationsexampleapp/MainApplication.java
+35
-0
example/android/build.gradle
example/android/build.gradle
+1
-1
example/index.ios.js
example/index.ios.js
+4
-2
example/ios/NotificationsExampleApp.xcodeproj/project.pbxproj
...ple/ios/NotificationsExampleApp.xcodeproj/project.pbxproj
+56
-102
example/ios/NotificationsExampleApp/AppDelegate.m
example/ios/NotificationsExampleApp/AppDelegate.m
+4
-29
example/ios/NotificationsExampleApp/Info.plist
example/ios/NotificationsExampleApp/Info.plist
+15
-13
example/ios/NotificationsExampleAppTests/Info.plist
example/ios/NotificationsExampleAppTests/Info.plist
+1
-1
example/package.json
example/package.json
+2
-2
No files found.
RNNotifications/RNNotifications.m
View file @
91ceadbe
...
@@ -495,9 +495,9 @@ RCT_EXPORT_METHOD(localNotification:(NSDictionary *)notification withId:(NSStrin
...
@@ -495,9 +495,9 @@ RCT_EXPORT_METHOD(localNotification:(NSDictionary *)notification withId:(NSStrin
localNotification
.
userInfo
=
userInfo
;
localNotification
.
userInfo
=
userInfo
;
if
([
notification
objectForKey
:
@"fireDate"
]
!=
nil
)
{
if
([
notification
objectForKey
:
@"fireDate"
]
!=
nil
)
{
[
RCTSharedApplication
()
scheduleLocalNotification
:
localNotification
];
[
[
UIApplication
sharedApplication
]
scheduleLocalNotification
:
localNotification
];
}
else
{
}
else
{
[
RCTSharedApplication
()
presentLocalNotificationNow
:
localNotification
];
[
[
UIApplication
sharedApplication
]
presentLocalNotificationNow
:
localNotification
];
}
}
}
}
...
...
example/.flowconfig
View file @
91ceadbe
[ignore]
[ignore]
# We fork some components by platform.
# We fork some components by platform.
.*/*.web.js
.*/*[.]android.js
.*/*.android.js
# Some modules have their own node_modules with overlap
# Ignore templates with `@flow` in header
.*/node_modules/node-haste/.*
.*/local-cli/generator.*
# Ugh
.*/node_modules/babel.*
.*/node_modules/babylon.*
.*/node_modules/invariant.*
# Ignore react and fbjs where there are overlaps, but don't ignore
# anything that react-native relies on
.*/node_modules/fbjs/lib/Map.js
.*/node_modules/fbjs/lib/fetch.js
.*/node_modules/fbjs/lib/ExecutionEnvironment.js
.*/node_modules/fbjs/lib/ErrorUtils.js
# Flow has a built-in definition for the 'react' module which we prefer to use
# over the currently-untyped source
.*/node_modules/react/react.js
.*/node_modules/react/lib/React.js
.*/node_modules/react/lib/ReactDOM.js
.*/__mocks__/.*
.*/__tests__/.*
.*/commoner/test/source/widget/share.js
# Ignore commoner tests
.*/node_modules/commoner/test/.*
# See https://github.com/facebook/flow/issues/442
.*/react-tools/node_modules/commoner/lib/reader.js
# Ignore
jest
# Ignore
malformed json
.*/node_modules/
jest-cli/.*
.*/node_modules/
y18n/test/.*\.json
# Ignore
Website
# Ignore
the website subdir
.*
/website/.*
<PROJECT_ROOT>
/website/.*
# Ignore
generato
rs
# Ignore
BUCK generated di
rs
.*/local-cli/generator.*
<PROJECT_ROOT>/\.buckd/
# Ignore BUCK generated folders
# Ignore unexpected extra @providesModule
.*\.buckd/
.*/node_modules/commoner/test/source/widget/share.js
.*/node_modules/is-my-json-valid/test/.*\.json
.*/node_modules/iconv-lite/encodings/tables/.*\.json
.*/node_modules/y18n/test/.*\.json
.*/node_modules/spdx-license-ids/spdx-license-ids.json
.*/node_modules/spdx-exceptions/index.json
.*/node_modules/resolve/test/subdirs/node_modules/a/b/c/x.json
.*/node_modules/resolve/lib/core.json
.*/node_modules/jsonparse/samplejson/.*\.json
.*/node_modules/json5/test/.*\.json
.*/node_modules/ua-parser-js/test/.*\.json
.*/node_modules/builtin-modules/builtin-modules.json
.*/node_modules/binary-extensions/binary-extensions.json
.*/node_modules/url-regex/tlds.json
.*/node_modules/joi/.*\.json
.*/node_modules/isemail/.*\.json
.*/node_modules/tr46/.*\.json
# Ignore duplicate module providers
# For RN Apps installed via npm, "Libraries" folder is inside node_modules/react-native but in the source repo it is in the root
.*/Libraries/react-native/React.js
.*/Libraries/react-native/ReactNative.js
.*/node_modules/jest-runtime/build/__tests__/.*
[include]
[include]
...
@@ -79,18 +37,22 @@ module.system=haste
...
@@ -79,18 +37,22 @@ module.system=haste
esproposal.class_static_fields=enable
esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable
esproposal.class_instance_fields=enable
experimental.strict_type_args=true
munge_underscores=true
munge_underscores=true
module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub'
module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub'
module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\)$' -> 'RelativeImageStub'
module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\
|pdf\
)$' -> 'RelativeImageStub'
suppress_type=$FlowIssue
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FlowFixMe
suppress_type=$FixMe
suppress_type=$FixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(
2[0-3]\\|1
[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(
3[0-2]\\|[1-2]
[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(
2[0-3]\\|1[0-9]\\|
[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(
3[0-2]\\|1[0-9]\\|[1-2]
[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
unsafe.enable_getters_and_setters=true
[version]
[version]
0.23
.0
^0.32
.0
example/.gitignore
View file @
91ceadbe
...
@@ -24,6 +24,7 @@ project.xcworkspace
...
@@ -24,6 +24,7 @@ project.xcworkspace
# Android/IJ
# Android/IJ
#
#
*.iml
.idea
.idea
.gradle
.gradle
local.properties
local.properties
...
...
example/android/app/BUCK
View file @
91ceadbe
...
@@ -5,7 +5,7 @@ import re
...
@@ -5,7 +5,7 @@ import re
# - install Buck
# - install Buck
# - `npm start` - to start the packager
# - `npm start` - to start the packager
# - `cd android`
# - `cd android`
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US`
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US
"
`
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
# - `buck install -r android/app` - compile, install and run application
# - `buck install -r android/app` - compile, install and run application
#
#
...
...
example/android/app/build.gradle
View file @
91ceadbe
...
@@ -9,7 +9,7 @@ import com.android.build.OutputFile
...
@@ -9,7 +9,7 @@ import com.android.build.OutputFile
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
* bundle directly from the development server. Below you can see all the possible configurations
* bundle directly from the development server. Below you can see all the possible configurations
* and their defaults. If you decide to add a configuration block, make sure to add it before the
* and their defaults. If you decide to add a configuration block, make sure to add it before the
* `apply from: "react.gradle"` line.
* `apply from: "
../../node_modules/react-native/
react.gradle"` line.
*
*
* project.ext.react = [
* project.ext.react = [
* // the name of the generated asset file containing your JS bundle
* // the name of the generated asset file containing your JS bundle
...
@@ -55,11 +55,17 @@ import com.android.build.OutputFile
...
@@ -55,11 +55,17 @@ import com.android.build.OutputFile
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
* // for example, you might want to remove it from here.
* // for example, you might want to remove it from here.
* inputExcludes: ["android/**", "ios/**"]
* inputExcludes: ["android/**", "ios/**"],
*
* // override which node gets called and with what additional arguments
* nodeExecutableAndArgs: ["node"]
*
* // supply additional arguments to the packager
* extraPackagerArgs: []
* ]
* ]
*/
*/
apply
from:
"react.gradle"
apply
from:
"
../../node_modules/react-native/
react.gradle"
/**
/**
* Set this to true to create two separate APKs instead of one:
* Set this to true to create two separate APKs instead of one:
...
@@ -81,7 +87,7 @@ android {
...
@@ -81,7 +87,7 @@ android {
buildToolsVersion
"23.0.1"
buildToolsVersion
"23.0.1"
defaultConfig
{
defaultConfig
{
applicationId
"com.notifications
-example-
app"
applicationId
"com.notifications
example
app"
minSdkVersion
16
minSdkVersion
16
targetSdkVersion
22
targetSdkVersion
22
versionCode
1
versionCode
1
...
@@ -124,3 +130,10 @@ dependencies {
...
@@ -124,3 +130,10 @@ dependencies {
compile
"com.android.support:appcompat-v7:23.0.1"
compile
"com.android.support:appcompat-v7:23.0.1"
compile
"com.facebook.react:react-native:+"
// From node_modules
compile
"com.facebook.react:react-native:+"
// From node_modules
}
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task
copyDownloadableDepsToLibs
(
type:
Copy
)
{
from
configurations
.
compile
into
'libs'
}
example/android/app/proguard-rules.pro
View file @
91ceadbe
...
@@ -26,11 +26,14 @@
...
@@ -26,11 +26,14 @@
#
See
http
://
sourceforge
.
net
/
p
/
proguard
/
bugs
/
466
/
#
See
http
://
sourceforge
.
net
/
p
/
proguard
/
bugs
/
466
/
-
keep
,
allowobfuscation
@
interface
com
.
facebook
.
proguard
.
annotations
.
DoNotStrip
-
keep
,
allowobfuscation
@
interface
com
.
facebook
.
proguard
.
annotations
.
DoNotStrip
-
keep
,
allowobfuscation
@
interface
com
.
facebook
.
proguard
.
annotations
.
KeepGettersAndSetters
-
keep
,
allowobfuscation
@
interface
com
.
facebook
.
proguard
.
annotations
.
KeepGettersAndSetters
-
keep
,
allowobfuscation
@
interface
com
.
facebook
.
common
.
internal
.
DoNotStrip
#
Do
not
strip
any
method
/
class
that
is
annotated
with
@
DoNotStrip
#
Do
not
strip
any
method
/
class
that
is
annotated
with
@
DoNotStrip
-
keep
@
com
.
facebook
.
proguard
.
annotations
.
DoNotStrip
class
*
-
keep
@
com
.
facebook
.
proguard
.
annotations
.
DoNotStrip
class
*
-
keep
@
com
.
facebook
.
common
.
internal
.
DoNotStrip
class
*
-
keepclassmembers
class
*
{
-
keepclassmembers
class
*
{
@
com
.
facebook
.
proguard
.
annotations
.
DoNotStrip
*
;
@
com
.
facebook
.
proguard
.
annotations
.
DoNotStrip
*
;
@
com
.
facebook
.
common
.
internal
.
DoNotStrip
*
;
}
}
-
keepclassmembers
@
com
.
facebook
.
proguard
.
annotations
.
KeepGettersAndSetters
class
*
{
-
keepclassmembers
@
com
.
facebook
.
proguard
.
annotations
.
KeepGettersAndSetters
class
*
{
...
@@ -51,9 +54,9 @@
...
@@ -51,9 +54,9 @@
-
keepattributes
Signature
-
keepattributes
Signature
-
keepattributes
*
Annotation
*
-
keepattributes
*
Annotation
*
-
keep
class
com
.
squareup
.
okhttp
.
**
{
*
;
}
-
keep
class
okhttp3
.
**
{
*
;
}
-
keep
interface
com
.
squareup
.
okhttp
.
**
{
*
;
}
-
keep
interface
okhttp3
.
**
{
*
;
}
-
dontwarn
com
.
squareup
.
okhttp
.
**
-
dontwarn
okhttp3
.
**
#
okio
#
okio
...
@@ -61,7 +64,3 @@
...
@@ -61,7 +64,3 @@
-
dontwarn
java
.
nio
.
file
.
*
-
dontwarn
java
.
nio
.
file
.
*
-
dontwarn
org
.
codehaus
.
mojo
.
animal_sniffer
.
IgnoreJRERequirement
-
dontwarn
org
.
codehaus
.
mojo
.
animal_sniffer
.
IgnoreJRERequirement
-
dontwarn
okio
.
**
-
dontwarn
okio
.
**
#
stetho
-
dontwarn
com
.
facebook
.
stetho
.
**
example/android/app/src/main/java/com/notificationsexampleapp/MainActivity.java
View file @
91ceadbe
package
com.notificationsexampleapp
;
package
com.notificationsexampleapp
;
import
com.facebook.react.ReactActivity
;
import
com.facebook.react.ReactActivity
;
import
com.facebook.react.ReactPackage
;
import
com.facebook.react.shell.MainReactPackage
;
import
java.util.Arrays
;
import
java.util.List
;
public
class
MainActivity
extends
ReactActivity
{
public
class
MainActivity
extends
ReactActivity
{
...
@@ -17,24 +12,4 @@ public class MainActivity extends ReactActivity {
...
@@ -17,24 +12,4 @@ public class MainActivity extends ReactActivity {
protected
String
getMainComponentName
()
{
protected
String
getMainComponentName
()
{
return
"NotificationsExampleApp"
;
return
"NotificationsExampleApp"
;
}
}
/**
* Returns whether dev mode should be enabled.
* This enables e.g. the dev menu.
*/
@Override
protected
boolean
getUseDeveloperSupport
()
{
return
BuildConfig
.
DEBUG
;
}
/**
* A list of packages used by the app. If the app uses additional views
* or modules besides the default ones, add more packages here.
*/
@Override
protected
List
<
ReactPackage
>
getPackages
()
{
return
Arrays
.<
ReactPackage
>
asList
(
new
MainReactPackage
()
);
}
}
}
example/android/app/src/main/java/com/notificationsexampleapp/MainApplication.java
0 → 100644
View file @
91ceadbe
package
com.notificationsexampleapp
;
import
android.app.Application
;
import
android.util.Log
;
import
com.facebook.react.ReactApplication
;
import
com.facebook.react.ReactInstanceManager
;
import
com.facebook.react.ReactNativeHost
;
import
com.facebook.react.ReactPackage
;
import
com.facebook.react.shell.MainReactPackage
;
import
java.util.Arrays
;
import
java.util.List
;
public
class
MainApplication
extends
Application
implements
ReactApplication
{
private
final
ReactNativeHost
mReactNativeHost
=
new
ReactNativeHost
(
this
)
{
@Override
protected
boolean
getUseDeveloperSupport
()
{
return
BuildConfig
.
DEBUG
;
}
@Override
protected
List
<
ReactPackage
>
getPackages
()
{
return
Arrays
.<
ReactPackage
>
asList
(
new
MainReactPackage
()
);
}
};
@Override
public
ReactNativeHost
getReactNativeHost
()
{
return
mReactNativeHost
;
}
}
example/android/build.gradle
View file @
91ceadbe
...
@@ -18,7 +18,7 @@ allprojects {
...
@@ -18,7 +18,7 @@ allprojects {
jcenter
()
jcenter
()
maven
{
maven
{
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url
"$
projectDir/..
/../node_modules/react-native/android"
url
"$
rootDir
/../node_modules/react-native/android"
}
}
}
}
}
}
example/index.ios.js
View file @
91ceadbe
...
@@ -58,8 +58,6 @@ class NotificationsExampleApp extends Component {
...
@@ -58,8 +58,6 @@ class NotificationsExampleApp extends Component {
NotificationsIOS
.
addEventListener
(
'
notificationReceivedForeground
'
,
this
.
onNotificationReceivedForeground
.
bind
(
this
));
NotificationsIOS
.
addEventListener
(
'
notificationReceivedForeground
'
,
this
.
onNotificationReceivedForeground
.
bind
(
this
));
NotificationsIOS
.
addEventListener
(
'
notificationReceivedBackground
'
,
this
.
onNotificationReceivedBackground
.
bind
(
this
));
NotificationsIOS
.
addEventListener
(
'
notificationReceivedBackground
'
,
this
.
onNotificationReceivedBackground
.
bind
(
this
));
NotificationsIOS
.
addEventListener
(
'
notificationOpened
'
,
this
.
onNotificationOpened
.
bind
(
this
));
NotificationsIOS
.
addEventListener
(
'
notificationOpened
'
,
this
.
onNotificationOpened
.
bind
(
this
));
}
}
onPushRegistered
(
deviceToken
)
{
onPushRegistered
(
deviceToken
)
{
...
@@ -86,6 +84,10 @@ class NotificationsExampleApp extends Component {
...
@@ -86,6 +84,10 @@ class NotificationsExampleApp extends Component {
userInfo
:
notification
.
getData
()
userInfo
:
notification
.
getData
()
});
});
// if you want to fire the local notification 10 seconds later,
// add the following line to the notification payload:
// fireDate: new Date(Date.now() + (10 * 1000)).toISOString()
// NotificationsIOS.backgroundTimeRemaining(time => NotificationsIOS.log("remaining background time: " + time));
// NotificationsIOS.backgroundTimeRemaining(time => NotificationsIOS.log("remaining background time: " + time));
// NotificationsIOS.cancelLocalNotification(localNotification);
// NotificationsIOS.cancelLocalNotification(localNotification);
...
...
example/ios/NotificationsExampleApp.xcodeproj/project.pbxproj
View file @
91ceadbe
This diff is collapsed.
Click to expand it.
example/ios/NotificationsExampleApp/AppDelegate.m
View file @
91ceadbe
...
@@ -8,6 +8,8 @@
...
@@ -8,6 +8,8 @@
*/
*/
#import "AppDelegate.h"
#import "AppDelegate.h"
#import "RCTBundleURLProvider.h"
#import "RCTRootView.h"
#import "RCTRootView.h"
#import "RNNotifications.h"
#import "RNNotifications.h"
...
@@ -19,47 +21,22 @@
...
@@ -19,47 +21,22 @@
{
{
NSURL
*
jsCodeLocation
;
NSURL
*
jsCodeLocation
;
/**
jsCodeLocation
=
[[
RCTBundleURLProvider
sharedSettings
]
jsBundleURLForBundleRoot
:
@"index.ios"
fallbackResource
:
nil
];
* Loading JavaScript code - uncomment the one you want.
*
* OPTION 1
* Load from development server. Start the server from the repository root:
*
* $ npm start
*
* To run on device, change `localhost` to the IP address of your computer
* (you can get this by typing `ifconfig` into the terminal and selecting the
* `inet` value under `en0:`) and make sure your computer and iOS device are
* on the same Wi-Fi network.
*/
jsCodeLocation
=
[
NSURL
URLWithString
:
@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"
];
/**
* OPTION 2
* Load from pre-bundled file on disk. The static bundle is automatically
* generated by the "Bundle React Native code and images" build step when
* running the project on an actual device or running the project on the
* simulator in the "Release" build configuration.
*/
// jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
RCTRootView
*
rootView
=
[[
RCTRootView
alloc
]
initWithBundleURL
:
jsCodeLocation
RCTRootView
*
rootView
=
[[
RCTRootView
alloc
]
initWithBundleURL
:
jsCodeLocation
moduleName:
@"NotificationsExampleApp"
moduleName:
@"NotificationsExampleApp"
initialProperties:
nil
initialProperties:
nil
launchOptions:
launchOptions
];
launchOptions:
launchOptions
];
rootView
.
backgroundColor
=
[[
UIColor
alloc
]
initWithRed
:
1
.
0
f
green
:
1
.
0
f
blue
:
1
.
0
f
alpha
:
1
];
self
.
window
=
[[
UIWindow
alloc
]
initWithFrame
:[
UIScreen
mainScreen
].
bounds
];
self
.
window
=
[[
UIWindow
alloc
]
initWithFrame
:[
UIScreen
mainScreen
].
bounds
];
UIViewController
*
rootViewController
=
[
UIViewController
new
];
UIViewController
*
rootViewController
=
[
UIViewController
new
];
rootViewController
.
view
=
rootView
;
rootViewController
.
view
=
rootView
;
self
.
window
.
rootViewController
=
rootViewController
;
self
.
window
.
rootViewController
=
rootViewController
;
[
self
.
window
makeKeyAndVisible
];
[
self
.
window
makeKeyAndVisible
];
return
YES
;
return
YES
;
}
}
// PushKit API Example
// PushKit API Example
-
(
void
)
pushRegistry
:(
PKPushRegistry
*
)
registry
didUpdatePushCredentials
:(
PKPushCredentials
*
)
credentials
forType
:(
NSString
*
)
type
-
(
void
)
pushRegistry
:(
PKPushRegistry
*
)
registry
didUpdatePushCredentials
:(
PKPushCredentials
*
)
credentials
forType
:(
NSString
*
)
type
{
{
...
@@ -107,6 +84,4 @@
...
@@ -107,6 +84,4 @@
[
RNNotifications
handleActionWithIdentifier
:
identifier
forRemoteNotification
:
userInfo
withResponseInfo
:
responseInfo
completionHandler
:
completionHandler
];
[
RNNotifications
handleActionWithIdentifier
:
identifier
forRemoteNotification
:
userInfo
withResponseInfo
:
responseInfo
completionHandler
:
completionHandler
];
}
}
@end
@end
example/ios/NotificationsExampleApp/Info.plist
View file @
91ceadbe
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<key>
CFBundleExecutable
</key>
<key>
CFBundleExecutable
</key>
<string>
$(EXECUTABLE_NAME)
</string>
<string>
$(EXECUTABLE_NAME)
</string>
<key>
CFBundleIdentifier
</key>
<key>
CFBundleIdentifier
</key>
<string>
$(PRODUCT_BUNDLE_IDENTIFIER
)
</string>
<string>
org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier
)
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<string>
6.0
</string>
<key>
CFBundleName
</key>
<key>
CFBundleName
</key>
...
@@ -22,18 +22,6 @@
...
@@ -22,18 +22,6 @@
<string>
1
</string>
<string>
1
</string>
<key>
LSRequiresIPhoneOS
</key>
<key>
LSRequiresIPhoneOS
</key>
<true/>
<true/>
<key>
NSAppTransportSecurity
</key>
<dict>
<key>
NSAllowsArbitraryLoads
</key>
<true/>
</dict>
<key>
NSLocationWhenInUseUsageDescription
</key>
<string></string>
<key>
UIBackgroundModes
</key>
<array>
<string>
remote-notification
</string>
<string>
voip
</string>
</array>
<key>
UILaunchStoryboardName
</key>
<key>
UILaunchStoryboardName
</key>
<string>
LaunchScreen
</string>
<string>
LaunchScreen
</string>
<key>
UIRequiredDeviceCapabilities
</key>
<key>
UIRequiredDeviceCapabilities
</key>
...
@@ -48,5 +36,19 @@
...
@@ -48,5 +36,19 @@
</array>
</array>
<key>
UIViewControllerBasedStatusBarAppearance
</key>
<key>
UIViewControllerBasedStatusBarAppearance
</key>
<false/>
<false/>
<key>
NSLocationWhenInUseUsageDescription
</key>
<string></string>
<key>
NSAppTransportSecurity
</key>
<!--See http://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/ -->
<dict>
<key>
NSExceptionDomains
</key>
<dict>
<key>
localhost
</key>
<dict>
<key>
NSTemporaryExceptionAllowsInsecureHTTPLoads
</key>
<true/>
</dict>
</dict>
</dict>
</dict>
</dict>
</plist>
</plist>
example/ios/NotificationsExampleAppTests/Info.plist
View file @
91ceadbe
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<key>
CFBundleExecutable
</key>
<key>
CFBundleExecutable
</key>
<string>
$(EXECUTABLE_NAME)
</string>
<string>
$(EXECUTABLE_NAME)
</string>
<key>
CFBundleIdentifier
</key>
<key>
CFBundleIdentifier
</key>
<string>
$(PRODUCT_BUNDLE_IDENTIFIER
)
</string>
<string>
org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier
)
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<string>
6.0
</string>
<key>
CFBundleName
</key>
<key>
CFBundleName
</key>
...
...
example/package.json
View file @
91ceadbe
...
@@ -7,8 +7,8 @@
...
@@ -7,8 +7,8 @@
},
},
"dependencies"
:
{
"dependencies"
:
{
"babel-preset-react-native-stage-0"
:
"^1.0.1"
,
"babel-preset-react-native-stage-0"
:
"^1.0.1"
,
"react"
:
"^
0.14.5
"
,
"react"
:
"^
15.3.1
"
,
"react-native"
:
"0.
25.1
"
,
"react-native"
:
"0.
34.0
"
,
"react-native-notifications"
:
"../"
"react-native-notifications"
:
"../"
},
},
"babel"
:
{
"babel"
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment