Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 93f4477

Browse files
Upgrade native SDKs to iOS 6.2.0 and Android 16.0.9 #1283 (iOS)
1 parent c32f5b3 commit 93f4477

30 files changed

+200
-828
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
* [Cloud Firestore](docs/FIRESTORE.md)
2525
* [Cloud Functions](docs/FUNCTIONS.md)
2626
* [Cloud Messaging](docs/MESSAGING.md) / [Non-Firebase Push Messaging](docs/NON_FIREBASE_MESSAGING.md)
27-
* [Crash Reporting / Crashlytics](docs/CRASHREPORTING.md)
27+
* [Crashlytics](docs/CRASHLYTICS.md)
2828
* [In-App Messaging](docs/IN_APP_MESSAGING.md)
29-
* [Invites and Dynamic Links](docs/INVITES_DYNAMICLINKS.md)
29+
* [Dynamic Links](docs/DYNAMIC_LINKS.md)
3030
* [ML Kit](docs/ML_KIT.md)
3131
* [Performance Monitoring](docs/PERFORMANCE_MONITORING.md)
3232
* [Realtime Database](docs/DATABASE.md)

demo-ng/app/App_Resources/iOS/Info.plist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,5 @@
100100
<key>NSAllowsArbitraryLoadsInWebContent</key>
101101
<true/>
102102
</dict>
103-
<key>NSContactsUsageDescription</key>
104-
<string>Required for Firebase Invites</string>
105103
</dict>
106104
</plist>

demo-ng/app/app.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,6 @@ button {
7171
background-color: #d52c1e;
7272
}
7373

74-
.button-invites {
75-
background-color: #1832d5;
76-
}
77-
7874
Label.mlkit-result {
7975
margin: 5;
8076
text-align: left;

demo-ng/firebase.nativescript.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@
1010
"messaging": false,
1111
"in_app_messaging": false,
1212
"crashlytics": false,
13-
"crash_reporting": false,
1413
"storage": false,
1514
"functions": false,
1615
"facebook_auth": false,
1716
"google_auth": false,
1817
"admob": false,
19-
"invites": false,
2018
"dynamic_links": false,
2119
"ml_kit": true,
2220
"ml_kit_text_recognition": true,

demo-push/app/app.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ button {
7373
background-color: #d52c1e;
7474
}
7575

76-
.button-invites {
77-
background-color: #1832d5;
78-
}
79-
8076
.barcodescanner {
8177
height: 420;
8278
margin-top: 16;

demo-push/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"dependencies": {
12-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-8.3.2.tgz",
12+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-9.0.0.tgz",
1313
"nativescript-theme-core": "^1.0.4",
1414
"nativescript-unit-test-runner": "^0.3.4",
1515
"tns-core-modules": "~4.2.0"

demo-vue/app/components/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
created() {
3232
// wire up an 'onMessageClicked' callback
3333
inappmessaging.onMessageClicked(message => {
34-
console.log(">> inappmessaging onMessageClicked, campaign: " + message.campaignName);
34+
console.log(">> inappmessaging onMessageClicked, campaign: " + message.campaignName + ", with url: " + message.actionURL);
3535
this.message = `Campaign ${message.campaignName} clicked`;
3636
});
3737

demo-vue/firebase.nativescript.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@
1010
"messaging": false,
1111
"in_app_messaging": true,
1212
"crashlytics": false,
13-
"crash_reporting": false,
1413
"storage": false,
1514
"functions": false,
1615
"facebook_auth": false,
1716
"google_auth": false,
1817
"admob": false,
19-
"invites": false,
2018
"dynamic_links": true,
2119
"ml_kit": true,
2220
"ml_kit_text_recognition": true

demo-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
},
1616
"dependencies": {
17-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-8.3.2.tgz",
17+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-9.0.0.tgz",
1818
"nativescript-theme-core": "^1.0.4",
1919
"nativescript-vue": "^2.0.0",
2020
"tns-core-modules": "^5.0.2"

demo/app/app.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ button {
7373
background-color: #d52c1e;
7474
}
7575

76-
.button-invites {
77-
background-color: #1832d5;
78-
}
79-
8076
.button-performance {
8177
background-color: #d57c13;
8278
}

0 commit comments

Comments
 (0)