This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +25
-13
lines changed Expand file tree Collapse file tree 6 files changed +25
-13
lines changed Original file line number Diff line number Diff line change 44[ Firebase Android SDK Changelog] ( https://firebase.google.com/support/release-notes/android )
55
66
7+ ## 4.0.5 (2017, July 22)
8+
9+ ### Fixes
10+ - [ #387 ] ( https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/387 ) Fix issues
11+ - [ #434 ] ( https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/434 ) JS: Error in firebase.init: TypeError: gson(...).toJson is not a function
12+
713
814## 4.0.4 (2017, July 16)
915
Original file line number Diff line number Diff line change @@ -132,6 +132,22 @@ firebase.init({
132132
133133## Known issues on iOS
134134
135+ #### Trouble running on the simulator
136+ Open or create ` App_Resources/iOS/<appname>.entitlements ` and add these two keys with the value ` true ` :
137+
138+ ``` xml
139+ <?xml version =" 1.0" encoding =" UTF-8" ?>
140+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
141+ <plist version =" 1.0" >
142+ <dict >
143+ <key >com.apple.keystore.access-keychain-keys</key >
144+ <true />
145+ <key >com.apple.keystore.device</key >
146+ <true />
147+ </dict >
148+ </plist >
149+ ```
150+
135151#### Authentication failed: invalid_token
136152On the simulator you may see this message if you have more than one app with the Firebase SDK ever installed:
137153
Original file line number Diff line number Diff line change 11
2- pod 'Firebase' , '~> 4.0.2 '
2+ pod 'Firebase' , '~> 4.0.4 '
33pod 'Firebase/Database'
44pod 'Firebase/Auth'
55
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ function writePodFile(result) {
215215 }
216216 try {
217217 fs . writeFileSync ( directories . ios + '/Podfile' ,
218- `pod 'Firebase', '~> 4.0.2 '
218+ `pod 'Firebase', '~> 4.0.4 '
219219pod 'Firebase/Database'
220220pod 'Firebase/Auth'
221221
Original file line number Diff line number Diff line change @@ -3013,7 +3013,7 @@ function writePodFile(result) {
30133013 }
30143014 try {
30153015 fs . writeFileSync ( directories . ios + '/Podfile' ,
3016- `pod 'Firebase', '~> 4.0.2 '
3016+ `pod 'Firebase', '~> 4.0.4 '
30173017pod 'Firebase/Database'
30183018pod 'Firebase/Auth'
30193019
You can’t perform that action at this time.
0 commit comments