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
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
localNotification
.
userInfo
=
userInfo
;
if
([
notification
objectForKey
:
@"fireDate"
]
!=
nil
)
{
[
RCTSharedApplication
()
scheduleLocalNotification
:
localNotification
];
[
[
UIApplication
sharedApplication
]
scheduleLocalNotification
:
localNotification
];
}
else
{
[
RCTSharedApplication
()
presentLocalNotificationNow
:
localNotification
];
[
[
UIApplication
sharedApplication
]
presentLocalNotificationNow
:
localNotification
];
}
}
...
...
example/.flowconfig
View file @
91ceadbe
[ignore]
# We fork some components by platform.
.*/*.web.js
.*/*.android.js
.*/*[.]android.js
# Some modules have their own node_modules with overlap
.*/node_modules/node-haste/.*
# 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 templates with `@flow` in header
.*/local-cli/generator.*
# Ignore
jest
.*/node_modules/
jest-cli/.*
# Ignore
malformed json
.*/node_modules/
y18n/test/.*\.json
# Ignore
Website
.*
/website/.*
# Ignore
the website subdir
<PROJECT_ROOT>
/website/.*
# Ignore
generato
rs
.*/local-cli/generator.*
# Ignore
BUCK generated di
rs
<PROJECT_ROOT>/\.buckd/
# Ignore BUCK generated folders
.*\.buckd/
.*/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 unexpected extra @providesModule
.*/node_modules/commoner/test/source/widget/share.js
# 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]
...
...
@@ -79,18 +37,22 @@ module.system=haste
esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable
experimental.strict_type_args=true
munge_underscores=true
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=$FlowFixMe
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\\)*\\$FlowIssue\\((\\(>=0\\.\\(
2[0-3]\\|1[0-9]\\|
[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
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\\.\\(
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
unsafe.enable_getters_and_setters=true
[version]
0.23
.0
^0.32
.0
example/.gitignore
View file @
91ceadbe
...
...
@@ -24,6 +24,7 @@ project.xcworkspace
# Android/IJ
#
*.iml
.idea
.gradle
local.properties
...
...
example/android/app/BUCK
View file @
91ceadbe
...
...
@@ -5,7 +5,7 @@ import re
# - install Buck
# - `npm start` - to start the packager
# - `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
# - `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
* 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
* 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 = [
* // the name of the generated asset file containing your JS bundle
...
...
@@ -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
* // 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.
* 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:
...
...
@@ -81,7 +87,7 @@ android {
buildToolsVersion
"23.0.1"
defaultConfig
{
applicationId
"com.notifications
-example-
app"
applicationId
"com.notifications
example
app"
minSdkVersion
16
targetSdkVersion
22
versionCode
1
...
...
@@ -124,3 +130,10 @@ dependencies {
compile
"com.android.support:appcompat-v7:23.0.1"
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 @@
#
See
http
://
sourceforge
.
net
/
p
/
proguard
/
bugs
/
466
/
-
keep
,
allowobfuscation
@
interface
com
.
facebook
.
proguard
.
annotations
.
DoNotStrip
-
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
-
keep
@
com
.
facebook
.
proguard
.
annotations
.
DoNotStrip
class
*
-
keep
@
com
.
facebook
.
common
.
internal
.
DoNotStrip
class
*
-
keepclassmembers
class
*
{
@
com
.
facebook
.
proguard
.
annotations
.
DoNotStrip
*
;
@
com
.
facebook
.
common
.
internal
.
DoNotStrip
*
;
}
-
keepclassmembers
@
com
.
facebook
.
proguard
.
annotations
.
KeepGettersAndSetters
class
*
{
...
...
@@ -51,9 +54,9 @@
-
keepattributes
Signature
-
keepattributes
*
Annotation
*
-
keep
class
com
.
squareup
.
okhttp
.
**
{
*
;
}
-
keep
interface
com
.
squareup
.
okhttp
.
**
{
*
;
}
-
dontwarn
com
.
squareup
.
okhttp
.
**
-
keep
class
okhttp3
.
**
{
*
;
}
-
keep
interface
okhttp3
.
**
{
*
;
}
-
dontwarn
okhttp3
.
**
#
okio
...
...
@@ -61,7 +64,3 @@
-
dontwarn
java
.
nio
.
file
.
*
-
dontwarn
org
.
codehaus
.
mojo
.
animal_sniffer
.
IgnoreJRERequirement
-
dontwarn
okio
.
**
#
stetho
-
dontwarn
com
.
facebook
.
stetho
.
**
example/android/app/src/main/java/com/notificationsexampleapp/MainActivity.java
View file @
91ceadbe
package
com.notificationsexampleapp
;
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
{
...
...
@@ -17,24 +12,4 @@ public class MainActivity extends ReactActivity {
protected
String
getMainComponentName
()
{
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 {
jcenter
()
maven
{
// 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 {
NotificationsIOS
.
addEventListener
(
'
notificationReceivedForeground
'
,
this
.
onNotificationReceivedForeground
.
bind
(
this
));
NotificationsIOS
.
addEventListener
(
'
notificationReceivedBackground
'
,
this
.
onNotificationReceivedBackground
.
bind
(
this
));
NotificationsIOS
.
addEventListener
(
'
notificationOpened
'
,
this
.
onNotificationOpened
.
bind
(
this
));
}
onPushRegistered
(
deviceToken
)
{
...
...
@@ -86,6 +84,10 @@ class NotificationsExampleApp extends Component {
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.cancelLocalNotification(localNotification);
...
...
example/ios/NotificationsExampleApp.xcodeproj/project.pbxproj
View file @
91ceadbe
...
...
@@ -12,18 +12,18 @@
00C302E81ABCBA2D00DB3ED1
/* libRCTImage.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
00C302C01ABCB91800DB3ED1
/* libRCTImage.a */
;
};
00C302E91ABCBA2D00DB3ED1
/* libRCTNetwork.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
00C302DC1ABCB9D200DB3ED1
/* libRCTNetwork.a */
;
};
00C302EA1ABCBA2D00DB3ED1
/* libRCTVibration.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
00C302E41ABCB9EE00DB3ED1
/* libRCTVibration.a */
;
};
00E356F31AD99517003FC87E
/* NotificationsExampleAppTests.m in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
00E356F21AD99517003FC87E
/* NotificationsExampleAppTests.m */
;
};
133E29F31AD74F7200F7D852
/* libRCTLinking.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
78C398B91ACF4ADC00677621
/* libRCTLinking.a */
;
};
139105C61AF99C1200B5F7CC
/* libRCTSettings.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
139105C11AF99BAD00B5F7CC
/* libRCTSettings.a */
;
};
139FDEF61B0652A700C62182
/* libRCTWebSocket.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
139FDEF41B06529B00C62182
/* libRCTWebSocket.a */
;
};
13B07FBC1A68108700A75B9A
/* AppDelegate.m in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
13B07FB01A68108700A75B9A
/* AppDelegate.m */
;
};
13B07FBD1A68108700A75B9A
/* LaunchScreen.xib in Resources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
13B07FB11A68108700A75B9A
/* LaunchScreen.xib */
;
};
13B07FBF1A68108700A75B9A
/* Images.xcassets in Resources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
13B07FB51A68108700A75B9A
/* Images.xcassets */
;
};
13B07FC11A68108700A75B9A
/* main.m in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
13B07FB71A68108700A75B9A
/* main.m */
;
};
140ED2AC1D01E1AD002B40FF
/* libReact.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
146834041AC3E56700842450
/* libReact.a */
;
};
146834051AC3E58100842450
/* libReact.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
146834041AC3E56700842450
/* libReact.a */
;
};
832341BD1AAA6AB300B99B32
/* libRCTText.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
832341B51AAA6A8300B99B32
/* libRCTText.a */
;
};
D85193341CCB6C8F008B3C99
/* libRNNotifications.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
D85193331CCB6C82008B3C99
/* libRNNotifications.a */
;
};
D892FB7C1CB5AD7600B2CCF9
/* SmartNotificationsAppTests.m in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
D892FB7B1CB5AD7600B2CCF9
/* SmartNotificationsAppTests.m */
;
};
D89EF3AC1CB586FE0029DCD6
/* AppDelegate.m in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
D89EF3A71CB586FE0029DCD6
/* AppDelegate.m */
;
};
D89EF3AD1CB586FE0029DCD6
/* Images.xcassets in Resources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
D89EF3A91CB586FE0029DCD6
/* Images.xcassets */
;
};
D89EF3AE1CB586FE0029DCD6
/* Info.plist in Resources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
D89EF3AA1CB586FE0029DCD6
/* Info.plist */
;
};
D89EF3AF1CB586FE0029DCD6
/* main.m in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
D89EF3AB1CB586FE0029DCD6
/* main.m */
;
};
D89EF3BE1CB5871B0029DCD6
/* LaunchScreen.xib in Resources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
D89EF3BC1CB5871B0029DCD6
/* LaunchScreen.xib */
;
};
D85498D21D97B37F00DEEE06
/* libRNNotifications.a in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
D85498D11D97B31100DEEE06
/* libRNNotifications.a */
;
};
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
...
...
@@ -104,23 +104,17 @@
remoteGlobalIDString
=
58B5119B1A9E6C1200147676
;
remoteInfo
=
RCTText
;
};
D85
193321CCB6C82008B3C99
/* PBXContainerItemProxy */
=
{
D85
498D01D97B31100DEEE06
/* PBXContainerItemProxy */
=
{
isa
=
PBXContainerItemProxy
;
containerPortal
=
D85
1932E1CCB6C82008B3C99
/* RNNotifications.xcodeproj */
;
containerPortal
=
D85
498C21D97B31100DEEE06
/* RNNotifications.xcodeproj */
;
proxyType
=
2
;
remoteGlobalIDString
=
134814201AA4EA6300B7C361
;
remoteInfo
=
RNNotifications
;
};
D86588541CA2F49C0076A9C8
/* PBXContainerItemProxy */
=
{
isa
=
PBXContainerItemProxy
;
containerPortal
=
D86588501CA2F49C0076A9C8
/* RCTPushNotification.xcodeproj */
;
proxyType
=
2
;
remoteGlobalIDString
=
134814201AA4EA6300B7C361
;
remoteInfo
=
RCTPushNotification
;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
008F07F21AC5B25A0029DE68
/* main.jsbundle */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
text
;
path
=
main.jsbundle
;
sourceTree
=
"<group>"
;
};
00C302A71ABCB8CE00DB3ED1
/* RCTActionSheet.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RCTActionSheet.xcodeproj
;
path
=
"../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"
;
sourceTree
=
"<group>"
;
};
00C302B51ABCB90400DB3ED1
/* RCTGeolocation.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RCTGeolocation.xcodeproj
;
path
=
"../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"
;
sourceTree
=
"<group>"
;
};
00C302BB1ABCB91800DB3ED1
/* RCTImage.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RCTImage.xcodeproj
;
path
=
"../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"
;
sourceTree
=
"<group>"
;
};
...
...
@@ -128,21 +122,20 @@
00C302DF1ABCB9EE00DB3ED1
/* RCTVibration.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RCTVibration.xcodeproj
;
path
=
"../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"
;
sourceTree
=
"<group>"
;
};
00E356EE1AD99517003FC87E
/* NotificationsExampleAppTests.xctest */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
wrapper.cfbundle
;
includeInIndex
=
0
;
path
=
NotificationsExampleAppTests.xctest
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
00E356F11AD99517003FC87E
/* Info.plist */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
text.plist.xml
;
path
=
Info.plist
;
sourceTree
=
"<group>"
;
};
00E356F21AD99517003FC87E
/* NotificationsExampleAppTests.m */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.c.objc
;
path
=
NotificationsExampleAppTests.m
;
sourceTree
=
"<group>"
;
};
139105B61AF99BAD00B5F7CC
/* RCTSettings.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RCTSettings.xcodeproj
;
path
=
"../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"
;
sourceTree
=
"<group>"
;
};
139FDEE61B06529A00C62182
/* RCTWebSocket.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RCTWebSocket.xcodeproj
;
path
=
"../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"
;
sourceTree
=
"<group>"
;
};
13B07F961A680F5B00A75B9A
/* NotificationsExampleApp.app */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
wrapper.application
;
includeInIndex
=
0
;
path
=
NotificationsExampleApp.app
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
13B07FAF1A68108700A75B9A
/* AppDelegate.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
AppDelegate.h
;
path
=
NotificationsExampleApp/AppDelegate.h
;
sourceTree
=
"<group>"
;
};
13B07FB01A68108700A75B9A
/* AppDelegate.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
AppDelegate.m
;
path
=
NotificationsExampleApp/AppDelegate.m
;
sourceTree
=
"<group>"
;
};
13B07FB21A68108700A75B9A
/* Base */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
file.xib
;
name
=
Base
;
path
=
Base.lproj/LaunchScreen.xib
;
sourceTree
=
"<group>"
;
};
13B07FB51A68108700A75B9A
/* Images.xcassets */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
folder.assetcatalog
;
name
=
Images.xcassets
;
path
=
NotificationsExampleApp/Images.xcassets
;
sourceTree
=
"<group>"
;
};
13B07FB61A68108700A75B9A
/* Info.plist */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
text.plist.xml
;
name
=
Info.plist
;
path
=
NotificationsExampleApp/Info.plist
;
sourceTree
=
"<group>"
;
};
13B07FB71A68108700A75B9A
/* main.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
main.m
;
path
=
NotificationsExampleApp/main.m
;
sourceTree
=
"<group>"
;
};
146833FF1AC3E56700842450
/* React.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
React.xcodeproj
;
path
=
"../node_modules/react-native/React/React.xcodeproj"
;
sourceTree
=
"<group>"
;
};
78C398B01ACF4ADC00677621
/* RCTLinking.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RCTLinking.xcodeproj
;
path
=
"../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"
;
sourceTree
=
"<group>"
;
};
832341B01AAA6A8300B99B32
/* RCTText.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RCTText.xcodeproj
;
path
=
"../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"
;
sourceTree
=
"<group>"
;
};
D851932E1CCB6C82008B3C99
/* RNNotifications.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RNNotifications.xcodeproj
;
path
=
../../RNNotifications/RNNotifications.xcodeproj
;
sourceTree
=
"<group>"
;
};
D86588501CA2F49C0076A9C8
/* RCTPushNotification.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RCTPushNotification.xcodeproj
;
path
=
"../node_modules/react-native/Libraries/PushNotificationIOS/RCTPushNotification.xcodeproj"
;
sourceTree
=
"<group>"
;
};
D892FB7B1CB5AD7600B2CCF9
/* SmartNotificationsAppTests.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
path
=
SmartNotificationsAppTests.m
;
sourceTree
=
"<group>"
;
};
D89EF3A71CB586FE0029DCD6
/* AppDelegate.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
AppDelegate.m
;
path
=
NotificationsExampleApp/AppDelegate.m
;
sourceTree
=
"<group>"
;
};
D89EF3A81CB586FE0029DCD6
/* AppDelegate.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
AppDelegate.h
;
path
=
NotificationsExampleApp/AppDelegate.h
;
sourceTree
=
"<group>"
;
};
D89EF3A91CB586FE0029DCD6
/* Images.xcassets */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
folder.assetcatalog
;
name
=
Images.xcassets
;
path
=
NotificationsExampleApp/Images.xcassets
;
sourceTree
=
"<group>"
;
};
D89EF3AA1CB586FE0029DCD6
/* Info.plist */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
text.plist.xml
;
name
=
Info.plist
;
path
=
NotificationsExampleApp/Info.plist
;
sourceTree
=
"<group>"
;
};
D89EF3AB1CB586FE0029DCD6
/* main.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
main.m
;
path
=
NotificationsExampleApp/main.m
;
sourceTree
=
"<group>"
;
};
D89EF3BD1CB5871B0029DCD6
/* Base */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
file.xib
;
name
=
Base
;
path
=
NotificationsExampleApp/Base.lproj/LaunchScreen.xib
;
sourceTree
=
"<group>"
;
};
D85498C21D97B31100DEEE06
/* RNNotifications.xcodeproj */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
"wrapper.pb-project"
;
name
=
RNNotifications.xcodeproj
;
path
=
../../RNNotifications/RNNotifications.xcodeproj
;
sourceTree
=
"<group>"
;
};
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
...
...
@@ -150,6 +143,7 @@
isa
=
PBXFrameworksBuildPhase
;
buildActionMask
=
2147483647
;
files
=
(
140ED2AC1D01E1AD002B40FF
/* libReact.a in Frameworks */
,
);
runOnlyForDeploymentPostprocessing
=
0
;
};
...
...
@@ -157,7 +151,7 @@
isa
=
PBXFrameworksBuildPhase
;
buildActionMask
=
2147483647
;
files
=
(
D85
193341CCB6C8F008B3C99
/* libRNNotifications.a in Frameworks */
,
D85
498D21D97B37F00DEEE06
/* libRNNotifications.a in Frameworks */
,
146834051AC3E58100842450
/* libReact.a in Frameworks */
,
00C302E51ABCBA2D00DB3ED1
/* libRCTActionSheet.a in Frameworks */
,
00C302E71ABCBA2D00DB3ED1
/* libRCTGeolocation.a in Frameworks */
,
...
...
@@ -217,7 +211,7 @@
00E356EF1AD99517003FC87E
/* NotificationsExampleAppTests */
=
{
isa
=
PBXGroup
;
children
=
(
D892FB7B1CB5AD7600B2CCF9
/* SmartNotifications
AppTests.m */
,
00E356F21AD99517003FC87E
/* NotificationsExample
AppTests.m */
,
00E356F01AD99517003FC87E
/* Supporting Files */
,
);
path
=
NotificationsExampleAppTests
;
...
...
@@ -250,12 +244,13 @@
13B07FAE1A68108700A75B9A
/* NotificationsExampleApp */
=
{
isa
=
PBXGroup
;
children
=
(
D89EF3BC1CB5871B0029DCD6
/* LaunchScreen.xib */
,
D89EF3A71CB586FE0029DCD6
/* AppDelegate.m */
,
D89EF3A81CB586FE0029DCD6
/* AppDelegate.h */
,
D89EF3A91CB586FE0029DCD6
/* Images.xcassets */
,
D89EF3AA1CB586FE0029DCD6
/* Info.plist */
,
D89EF3AB1CB586FE0029DCD6
/* main.m */
,
008F07F21AC5B25A0029DE68
/* main.jsbundle */
,
13B07FAF1A68108700A75B9A
/* AppDelegate.h */
,
13B07FB01A68108700A75B9A
/* AppDelegate.m */
,
13B07FB51A68108700A75B9A
/* Images.xcassets */
,
13B07FB61A68108700A75B9A
/* Info.plist */
,
13B07FB11A68108700A75B9A
/* LaunchScreen.xib */
,
13B07FB71A68108700A75B9A
/* main.m */
,
);
name
=
NotificationsExampleApp
;
sourceTree
=
"<group>"
;
...
...
@@ -279,8 +274,7 @@
832341AE1AAA6A7D00B99B32
/* Libraries */
=
{
isa
=
PBXGroup
;
children
=
(
D851932E1CCB6C82008B3C99
/* RNNotifications.xcodeproj */
,
D86588501CA2F49C0076A9C8
/* RCTPushNotification.xcodeproj */
,
D85498C21D97B31100DEEE06
/* RNNotifications.xcodeproj */
,
146833FF1AC3E56700842450
/* React.xcodeproj */
,
00C302A71ABCB8CE00DB3ED1
/* RCTActionSheet.xcodeproj */
,
00C302B51ABCB90400DB3ED1
/* RCTGeolocation.xcodeproj */
,
...
...
@@ -324,18 +318,10 @@
name
=
Products
;
sourceTree
=
"<group>"
;
};
D85
1932F1CCB6C82008B3C99
/* Products */
=
{
D85
498C31D97B31100DEEE06
/* Products */
=
{
isa
=
PBXGroup
;
children
=
(
D85193331CCB6C82008B3C99
/* libRNNotifications.a */
,
);
name
=
Products
;
sourceTree
=
"<group>"
;
};
D86588511CA2F49C0076A9C8
/* Products */
=
{
isa
=
PBXGroup
;
children
=
(
D86588551CA2F49C0076A9C8
/* libRCTPushNotification.a */
,
D85498D11D97B31100DEEE06
/* libRNNotifications.a */
,
);
name
=
Products
;
sourceTree
=
"<group>"
;
...
...
@@ -385,21 +371,13 @@
83CBB9F71A601CBA00E9B192
/* Project object */
=
{
isa
=
PBXProject
;
attributes
=
{
LastUpgradeCheck
=
0
73
0
;
LastUpgradeCheck
=
0
61
0
;
ORGANIZATIONNAME
=
Facebook
;
TargetAttributes
=
{
00E356ED1AD99517003FC87E
=
{
CreatedOnToolsVersion
=
6.2
;
TestTargetID
=
13B07F861A680F5B00A75B9A
;
};
13B07F861A680F5B00A75B9A
=
{
DevelopmentTeam
=
S3GLW74Y8N
;
SystemCapabilities
=
{
com.apple.Push
=
{
enabled
=
1
;
};
};
};
};
};
buildConfigurationList
=
83CBB9FA1A601CBA00E9B192
/* Build configuration list for PBXProject "NotificationsExampleApp" */
;
...
...
@@ -434,10 +412,6 @@
ProductGroup
=
00C302D41ABCB9D200DB3ED1
/* Products */
;
ProjectRef
=
00C302D31ABCB9D200DB3ED1
/* RCTNetwork.xcodeproj */
;
},
{
ProductGroup
=
D86588511CA2F49C0076A9C8
/* Products */
;
ProjectRef
=
D86588501CA2F49C0076A9C8
/* RCTPushNotification.xcodeproj */
;
},
{
ProductGroup
=
139105B71AF99BAD00B5F7CC
/* Products */
;
ProjectRef
=
139105B61AF99BAD00B5F7CC
/* RCTSettings.xcodeproj */
;
...
...
@@ -459,8 +433,8 @@
ProjectRef
=
146833FF1AC3E56700842450
/* React.xcodeproj */
;
},
{
ProductGroup
=
D85
1932F1CCB6C82008B3C99
/* Products */
;
ProjectRef
=
D85
1932E1CCB6C82008B3C99
/* RNNotifications.xcodeproj */
;
ProductGroup
=
D85
498C31D97B31100DEEE06
/* Products */
;
ProjectRef
=
D85
498C21D97B31100DEEE06
/* RNNotifications.xcodeproj */
;
},
);
projectRoot
=
""
;
...
...
@@ -542,18 +516,11 @@
remoteRef
=
832341B41AAA6A8300B99B32
/* PBXContainerItemProxy */
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
D85
193331CCB6C82008B3C99
/* libRNNotifications.a */
=
{
D85
498D11D97B31100DEEE06
/* libRNNotifications.a */
=
{
isa
=
PBXReferenceProxy
;
fileType
=
archive.ar
;
path
=
libRNNotifications.a
;
remoteRef
=
D85193321CCB6C82008B3C99
/* PBXContainerItemProxy */
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
D86588551CA2F49C0076A9C8
/* libRCTPushNotification.a */
=
{
isa
=
PBXReferenceProxy
;
fileType
=
archive.ar
;
path
=
libRCTPushNotification.a
;
remoteRef
=
D86588541CA2F49C0076A9C8
/* PBXContainerItemProxy */
;
remoteRef
=
D85498D01D97B31100DEEE06
/* PBXContainerItemProxy */
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
/* End PBXReferenceProxy section */
...
...
@@ -570,9 +537,8 @@
isa
=
PBXResourcesBuildPhase
;
buildActionMask
=
2147483647
;
files
=
(
D89EF3AD1CB586FE0029DCD6
/* Images.xcassets in Resources */
,
D89EF3BE1CB5871B0029DCD6
/* LaunchScreen.xib in Resources */
,
D89EF3AE1CB586FE0029DCD6
/* Info.plist in Resources */
,
13B07FBF1A68108700A75B9A
/* Images.xcassets in Resources */
,
13B07FBD1A68108700A75B9A
/* LaunchScreen.xib in Resources */
,
);
runOnlyForDeploymentPostprocessing
=
0
;
};
...
...
@@ -600,7 +566,7 @@
isa
=
PBXSourcesBuildPhase
;
buildActionMask
=
2147483647
;
files
=
(
D892FB7C1CB5AD7600B2CCF9
/* SmartNotifications
AppTests.m in Sources */
,
00E356F31AD99517003FC87E
/* NotificationsExample
AppTests.m in Sources */
,
);
runOnlyForDeploymentPostprocessing
=
0
;
};
...
...
@@ -608,8 +574,8 @@
isa
=
PBXSourcesBuildPhase
;
buildActionMask
=
2147483647
;
files
=
(
D89EF3AF1CB586FE0029DCD6
/* main
.m in Sources */
,
D89EF3AC1CB586FE0029DCD6
/* AppDelegate
.m in Sources */
,
13B07FBC1A68108700A75B9A
/* AppDelegate
.m in Sources */
,
13B07FC11A68108700A75B9A
/* main
.m in Sources */
,
);
runOnlyForDeploymentPostprocessing
=
0
;
};
...
...
@@ -624,12 +590,13 @@
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
D89EF3BC1CB5871B0029DCD6
/* LaunchScreen.xib */
=
{
13B07FB11A68108700A75B9A
/* LaunchScreen.xib */
=
{
isa
=
PBXVariantGroup
;
children
=
(
D89EF3BD1CB5871B0029DCD6
/* Base */
,
13B07FB21A68108700A75B9A
/* Base */
,
);
name
=
LaunchScreen.xib
;
path
=
NotificationsExampleApp
;
sourceTree
=
"<group>"
;
};
/* End PBXVariantGroup section */
...
...
@@ -639,18 +606,13 @@
isa
=
XCBuildConfiguration
;
buildSettings
=
{
BUNDLE_LOADER
=
"$(TEST_HOST)"
;
FRAMEWORK_SEARCH_PATHS
=
(
"$(SDKROOT)/Developer/Library/Frameworks"
,
"$(inherited)"
,
);
GCC_PREPROCESSOR_DEFINITIONS
=
(
"DEBUG=1"
,
"$(inherited)"
,
);
INFOPLIST_FILE
=
NotificationsExampleAppTests/Info.plist
;
IPHONEOS_DEPLOYMENT_TARGET
=
8.
2
;
IPHONEOS_DEPLOYMENT_TARGET
=
8.
0
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks @loader_path/Frameworks"
;
PRODUCT_BUNDLE_IDENTIFIER
=
"org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
TEST_HOST
=
"$(BUILT_PRODUCTS_DIR)/NotificationsExampleApp.app/NotificationsExampleApp"
;
};
...
...
@@ -661,14 +623,9 @@
buildSettings
=
{
BUNDLE_LOADER
=
"$(TEST_HOST)"
;
COPY_PHASE_STRIP
=
NO
;
FRAMEWORK_SEARCH_PATHS
=
(
"$(SDKROOT)/Developer/Library/Frameworks"
,
"$(inherited)"
,
);
INFOPLIST_FILE
=
NotificationsExampleAppTests/Info.plist
;
IPHONEOS_DEPLOYMENT_TARGET
=
8.
2
;
IPHONEOS_DEPLOYMENT_TARGET
=
8.
0
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks @loader_path/Frameworks"
;
PRODUCT_BUNDLE_IDENTIFIER
=
"org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
TEST_HOST
=
"$(BUILT_PRODUCTS_DIR)/NotificationsExampleApp.app/NotificationsExampleApp"
;
};
...
...
@@ -678,23 +635,23 @@
isa
=
XCBuildConfiguration
;
buildSettings
=
{
ASSETCATALOG_COMPILER_APPICON_NAME
=
AppIcon
;
C
ODE_SIGN_IDENTITY
=
"iPhone Developer"
;
C
URRENT_PROJECT_VERSION
=
1
;
DEAD_CODE_STRIPPING
=
NO
;
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
,
"$(SRCROOT)/../node_modules/react-native/React/**"
,
"$(SRCROOT)/../
../RNN
otifications/**"
,
"$(SRCROOT)/../
node_modules/react-native-n
otifications/**"
,
);
INFOPLIST_FILE
=
NotificationsExampleApp/Info.plist
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks"
;
OTHER_LDFLAGS
=
(
"$(inherited)"
,
"-ObjC"
,
"-lc++"
,
);
PRODUCT_BUNDLE_IDENTIFIER
=
"com.wix.smart-notifications-test-app"
;
PRODUCT_NAME
=
NotificationsExampleApp
;
PROVISIONING_PROFILE
=
"
"
;
VERSIONING_SYSTEM
=
"apple-generic
"
;
};
name
=
Debug
;
};
...
...
@@ -702,22 +659,22 @@
isa
=
XCBuildConfiguration
;
buildSettings
=
{
ASSETCATALOG_COMPILER_APPICON_NAME
=
AppIcon
;
C
ODE_SIGN_IDENTITY
=
"iPhone Developer"
;
C
URRENT_PROJECT_VERSION
=
1
;
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
,
"$(SRCROOT)/../node_modules/react-native/React/**"
,
"$(SRCROOT)/../
../RNN
otifications/**"
,
"$(SRCROOT)/../
node_modules/react-native-n
otifications/**"
,
);
INFOPLIST_FILE
=
NotificationsExampleApp/Info.plist
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks"
;
OTHER_LDFLAGS
=
(
"$(inherited)"
,
"-ObjC"
,
"-lc++"
,
);
PRODUCT_BUNDLE_IDENTIFIER
=
"com.wix.smart-notifications-test-app"
;
PRODUCT_NAME
=
NotificationsExampleApp
;
PROVISIONING_PROFILE
=
"
"
;
VERSIONING_SYSTEM
=
"apple-generic
"
;
};
name
=
Release
;
};
...
...
@@ -738,11 +695,9 @@
CLANG_WARN_OBJC_ROOT_CLASS
=
YES_ERROR
;
CLANG_WARN_UNREACHABLE_CODE
=
YES
;
CLANG_WARN__DUPLICATE_METHOD_MATCH
=
YES
;
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]"
=
"iPhone Developer"
;
COPY_PHASE_STRIP
=
NO
;
ENABLE_STRICT_OBJC_MSGSEND
=
YES
;
ENABLE_TESTABILITY
=
YES
;
GCC_C_LANGUAGE_STANDARD
=
gnu99
;
GCC_DYNAMIC_NO_PIC
=
NO
;
GCC_OPTIMIZATION_LEVEL
=
0
;
...
...
@@ -762,7 +717,7 @@
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
,
"$(SRCROOT)/../node_modules/react-native/React/**"
,
);
IPHONEOS_DEPLOYMENT_TARGET
=
7
.0
;
IPHONEOS_DEPLOYMENT_TARGET
=
8
.0
;
MTL_ENABLE_DEBUG_INFO
=
YES
;
ONLY_ACTIVE_ARCH
=
YES
;
SDKROOT
=
iphoneos
;
...
...
@@ -786,7 +741,6 @@
CLANG_WARN_OBJC_ROOT_CLASS
=
YES_ERROR
;
CLANG_WARN_UNREACHABLE_CODE
=
YES
;
CLANG_WARN__DUPLICATE_METHOD_MATCH
=
YES
;
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]"
=
"iPhone Developer"
;
COPY_PHASE_STRIP
=
YES
;
ENABLE_NS_ASSERTIONS
=
NO
;
...
...
@@ -803,7 +757,7 @@
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
,
"$(SRCROOT)/../node_modules/react-native/React/**"
,
);
IPHONEOS_DEPLOYMENT_TARGET
=
7
.0
;
IPHONEOS_DEPLOYMENT_TARGET
=
8
.0
;
MTL_ENABLE_DEBUG_INFO
=
NO
;
SDKROOT
=
iphoneos
;
VALIDATE_PRODUCT
=
YES
;
...
...
example/ios/NotificationsExampleApp/AppDelegate.m
View file @
91ceadbe
...
...
@@ -8,6 +8,8 @@
*/
#import "AppDelegate.h"
#import "RCTBundleURLProvider.h"
#import "RCTRootView.h"
#import "RNNotifications.h"
...
...
@@ -19,47 +21,22 @@
{
NSURL
*
jsCodeLocation
;
/**
* 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"];
jsCodeLocation
=
[[
RCTBundleURLProvider
sharedSettings
]
jsBundleURLForBundleRoot
:
@"index.ios"
fallbackResource
:
nil
];
RCTRootView
*
rootView
=
[[
RCTRootView
alloc
]
initWithBundleURL
:
jsCodeLocation
moduleName:
@"NotificationsExampleApp"
initialProperties:
nil
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
];
UIViewController
*
rootViewController
=
[
UIViewController
new
];
rootViewController
.
view
=
rootView
;
self
.
window
.
rootViewController
=
rootViewController
;
[
self
.
window
makeKeyAndVisible
];
return
YES
;
}
// PushKit API Example
-
(
void
)
pushRegistry
:(
PKPushRegistry
*
)
registry
didUpdatePushCredentials
:(
PKPushCredentials
*
)
credentials
forType
:(
NSString
*
)
type
{
...
...
@@ -107,6 +84,4 @@
[
RNNotifications
handleActionWithIdentifier
:
identifier
forRemoteNotification
:
userInfo
withResponseInfo
:
responseInfo
completionHandler
:
completionHandler
];
}
@end
example/ios/NotificationsExampleApp/Info.plist
View file @
91ceadbe
...
...
@@ -7,7 +7,7 @@
<key>
CFBundleExecutable
</key>
<string>
$(EXECUTABLE_NAME)
</string>
<key>
CFBundleIdentifier
</key>
<string>
$(PRODUCT_BUNDLE_IDENTIFIER
)
</string>
<string>
org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier
)
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleName
</key>
...
...
@@ -22,18 +22,6 @@
<string>
1
</string>
<key>
LSRequiresIPhoneOS
</key>
<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>
<string>
LaunchScreen
</string>
<key>
UIRequiredDeviceCapabilities
</key>
...
...
@@ -48,5 +36,19 @@
</array>
<key>
UIViewControllerBasedStatusBarAppearance
</key>
<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>
</plist>
example/ios/NotificationsExampleAppTests/Info.plist
View file @
91ceadbe
...
...
@@ -7,7 +7,7 @@
<key>
CFBundleExecutable
</key>
<string>
$(EXECUTABLE_NAME)
</string>
<key>
CFBundleIdentifier
</key>
<string>
$(PRODUCT_BUNDLE_IDENTIFIER
)
</string>
<string>
org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier
)
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleName
</key>
...
...
example/package.json
View file @
91ceadbe
...
...
@@ -7,8 +7,8 @@
},
"dependencies"
:
{
"babel-preset-react-native-stage-0"
:
"^1.0.1"
,
"react"
:
"^
0.14.5
"
,
"react-native"
:
"0.
25.1
"
,
"react"
:
"^
15.3.1
"
,
"react-native"
:
"0.
34.0
"
,
"react-native-notifications"
:
"../"
},
"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