Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update the Android migration docs #652

Merged
merged 4 commits into from
Jul 26, 2024
Merged
Changes from 1 commit
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
10 changes: 10 additions & 0 deletions src/pages/resources/migration/android/migrate-to-2x.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,16 @@ The `registerExtension` API for each extension is deprecated in the 2.x version
| com.adobe.marketing.mobile.PlacesPOI | Moved into **places** subpackage. Update import statements to reference **com.adobe.marketing.mobile.places.PlacesPOI** |
| com.adobe.marketing.mobile.PlacesRequestError | Moved into **places** subpackage. Update import statements to reference **com.adobe.marketing.mobile.places.PlacesRequestError** |

### Network Override

The helper classes for overriding the network service mentioned above have been removed in the 2.x version of the mobile SDK. If you had implemented code to override network services, you will need to update it refering to the guidance provided in this [documentation](https://developer.adobe.com/client-sdks/home/base/mobile-core/platform-services/network-service/).
yangyansong-adbe marked this conversation as resolved.
Show resolved Hide resolved

| Removed classes |
| :------------- |
| `AndroidNetworkServiceOverrider` |
| `AndroidNetworkServiceOverrider.HTTPConnectionPerformer` |
| `AndroidNetworkServiceOverrider.Connecting` |
yangyansong-adbe marked this conversation as resolved.
Show resolved Hide resolved

## Frequently asked questions

### Is there a change in minimum API level supported by Mobile SDK for Android?
Expand Down
Loading