-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic embedded isReady support (#50)
* Add basic ios embedded isReady support * Start android and proxy updates * Remove EmbeddedInfo intermediate * Add android * Move ios embedded listener * Release 7.2.0 --------- Co-authored-by: crow <[email protected]> Co-authored-by: Ryan Lepinski <[email protected]>
- Loading branch information
1 parent
ef357bc
commit 3b8b570
Showing
10 changed files
with
76 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...y/src/main/java/com/urbanairship/android/framework/proxy/events/PendingEmbeddedUpdated.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Copyright Urban Airship and Contributors */ | ||
|
||
package com.urbanairship.android.framework.proxy.events | ||
|
||
import com.urbanairship.android.framework.proxy.Event | ||
import com.urbanairship.android.framework.proxy.EventType | ||
import com.urbanairship.embedded.AirshipEmbeddedInfo | ||
import com.urbanairship.json.JsonMap | ||
import com.urbanairship.json.jsonMapOf | ||
|
||
internal class PendingEmbeddedUpdated(pending: List<AirshipEmbeddedInfo>) : Event { | ||
override val type = EventType.PENDING_EMBEDDED_UPDATED | ||
|
||
override val body: JsonMap = jsonMapOf( | ||
"pending" to pending.map { jsonMapOf( "embeddedId" to it.embeddedId ) } | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[versions] | ||
|
||
# Airship | ||
airshipProxy = '7.1.2' | ||
airshipProxy = '7.2.0' | ||
airship = '18.1.6' | ||
|
||
# Gradle plugins | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
PODS: | ||
- Airship (18.4.1): | ||
- Airship/Automation (= 18.4.1) | ||
- Airship/Basement (= 18.4.1) | ||
- Airship/Core (= 18.4.1) | ||
- Airship/FeatureFlags (= 18.4.1) | ||
- Airship/MessageCenter (= 18.4.1) | ||
- Airship/PreferenceCenter (= 18.4.1) | ||
- Airship/Automation (18.4.1): | ||
- Airship (18.7.2): | ||
- Airship/Automation (= 18.7.2) | ||
- Airship/Basement (= 18.7.2) | ||
- Airship/Core (= 18.7.2) | ||
- Airship/FeatureFlags (= 18.7.2) | ||
- Airship/MessageCenter (= 18.7.2) | ||
- Airship/PreferenceCenter (= 18.7.2) | ||
- Airship/Automation (18.7.2): | ||
- Airship/Core | ||
- Airship/Basement (18.4.1) | ||
- Airship/Core (18.4.1): | ||
- Airship/Basement (18.7.2) | ||
- Airship/Core (18.7.2): | ||
- Airship/Basement | ||
- Airship/FeatureFlags (18.4.1): | ||
- Airship/FeatureFlags (18.7.2): | ||
- Airship/Core | ||
- Airship/MessageCenter (18.4.1): | ||
- Airship/MessageCenter (18.7.2): | ||
- Airship/Core | ||
- Airship/PreferenceCenter (18.4.1): | ||
- Airship/PreferenceCenter (18.7.2): | ||
- Airship/Core | ||
|
||
DEPENDENCIES: | ||
- Airship (= 18.4.1) | ||
- Airship (= 18.7.2) | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- Airship | ||
|
||
SPEC CHECKSUMS: | ||
Airship: 4c99ee58d4441c63ab9c058d5e800cdaa4b7f8d3 | ||
Airship: bb32ff2c5a811352da074480357d9f02dbb8f327 | ||
|
||
PODFILE CHECKSUM: 635ef5c49183fa89abcb3d354a52a08af305b7bc | ||
PODFILE CHECKSUM: 22c784850a9675e3098beb50f7466412a5aaef79 | ||
|
||
COCOAPODS: 1.15.2 |