Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions android/app/src/debug/assets/airshipconfig.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
appKey = uulSSfTDQJ2r0PMpjRrhmQ
appSecret = D4Bhf0HrQEehrPua74Tyiw
inProduction = false
developmentLogLevel = VERBOSE

# Notification Customization
notificationIcon = ic_notification
notificationAccentColor = #2EAAE2
7 changes: 7 additions & 0 deletions android/app/src/e2eRelease/assets/airshipconfig.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
appKey = 55vypj0ARc6cN09MX7ogtQ
appSecret = EsSaqbdLSvmyC6kSBFJCtQ
inProduction = true

# Notification Customization
notificationIcon = ic_notification
notificationAccentColor = #2EAAE2
9 changes: 0 additions & 9 deletions android/app/src/main/assets/airshipconfig.properties

This file was deleted.

7 changes: 7 additions & 0 deletions android/app/src/release/assets/airshipconfig.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
appKey = 55vypj0ARc6cN09MX7ogtQ
appSecret = EsSaqbdLSvmyC6kSBFJCtQ
inProduction = true

# Notification Customization
notificationIcon = ic_notification
notificationAccentColor = #2EAAE2
8 changes: 4 additions & 4 deletions ios/AirshipConfig.plist
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<dict>
<key>detectProvisioningMode</key>
<true/>
<key>developmentAppKey</key>
<key>appKey</key>
<string>uulSSfTDQJ2r0PMpjRrhmQ</string>
<key>developmentAppSecret</key>
<key>appSecret</key>
<string>D4Bhf0HrQEehrPua74Tyiw</string>
<key>productionAppKey</key>
<key>appKey</key>
<string>55vypj0ARc6cN09MX7ogtQ</string>
<key>productionAppSecret</key>
<key>appSecret</key>
<string>EsSaqbdLSvmyC6kSBFJCtQ</string>
</dict>
Copy link
Copy Markdown
Contributor

@cristipaval cristipaval Dec 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just FYI: This file shouldn't have been changed. It introduced this regression. According to this Slack message from Airship team, it is fine to have appKey, appSecret for Android and developmentAppKey, developmentAppSecret, productionAppKey, productionAppSecret for iOS. Here is a PR to fix this.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahhh, that's a bit annoying that they don't align their SDKs. Nice find though and thanks for raising it.

</plist>