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: 4 additions & 4 deletions .buildconfig-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ projects:
- name: rust-log-forwarder
type: aar
description: Forward logs from Rust
httpconfig:
viaduct:
path: components/viaduct/android
artifactId: httpconfig
artifactId: viaduct
publications:
- name: httpconfig
- name: viaduct
type: aar
description: Component allowing the configuration of Rust HTTP stack.
description: Rust HTTP bridge.
push:
path: components/push/android
artifactId: push
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
- init_backend and `viaduct_init_backend_hyper` no longer throw an error if they're called multiple times.
Instead, we report the error via the Rust components error ping.
This is a breaking change for iOS, since the functions no longer throw.
- Renamed the Android package to `mozilla.appservices.viaduct`

## 🔧 What's Fixed 🔧

Expand Down
2 changes: 1 addition & 1 deletion components/remote_settings/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ dependencies {
} else {
testImplementation libs.mozilla.concept.fetch
}
testImplementation project(":httpconfig")
testImplementation project(":viaduct")
}
2 changes: 1 addition & 1 deletion components/viaduct/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply from: "$appServicesRootDir/build-scripts/component-common.gradle"
apply from: "$appServicesRootDir/publish.gradle"

android {
namespace 'org.mozilla.appservices.httpconfig'
namespace 'org.mozilla.appservices.viaduct'
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package mozilla.appservices.httpconfig
package mozilla.appservices.viaduct

import mozilla.appservices.viaduct.Backend
import mozilla.appservices.viaduct.ClientSettings
import mozilla.appservices.viaduct.Method
import mozilla.appservices.viaduct.Request
import mozilla.appservices.viaduct.Response
import java.util.concurrent.TimeUnit
import mozilla.components.concept.fetch.Client as FetchClient
import mozilla.components.concept.fetch.Header as FetchHeader
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package mozilla.appservices.httpconfig
package mozilla.appservices.viaduct

import mozilla.appservices.viaduct.initBackend
import mozilla.components.concept.fetch.Client
Expand Down