Skip to content

Update firebase-appdistribution maven ID in a few last places #3336

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

Merged
merged 1 commit into from
Jan 21, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class FirebaseAppDistributionTests : BaseTestCase() {
}
}

internal const val LIBRARY_NAME: String = "fire-app-distribution-ktx"
internal const val LIBRARY_NAME: String = "fire-appdistribution-ktx"

@RunWith(AndroidJUnit4ClassRunner::class)
class LibraryVersionTest : BaseTestCase() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import com.google.firebase.platforminfo.LibraryVersionComponent
val Firebase.appDistribution: FirebaseAppDistribution
get() = FirebaseAppDistribution.getInstance()

internal const val LIBRARY_NAME: String = "fire-app-distribution-ktx"
internal const val LIBRARY_NAME: String = "fire-appdistribution-ktx"

/** @suppress */
@Keep
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class FirebaseAppDistributionRegistrar implements ComponentRegistrar {
// activity lifecycle callbacks before the API is called
.alwaysEager()
.build(),
LibraryVersionComponent.create("fire-app-distribution", BuildConfig.VERSION_NAME));
LibraryVersionComponent.create("fire-appdistribution", BuildConfig.VERSION_NAME));
}

private FirebaseAppDistribution buildFirebaseAppDistribution(ComponentContainer container) {
Expand Down
2 changes: 1 addition & 1 deletion firebase-appdistribution/test-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ After the build is successful, [bring up emulator/physical device](https://devel
and install the apk:

```
firebase-android-sdk$ adb install firebase-app-distribution/test-app/build/outputs/apk/release/test-app-release.apk
firebase-android-sdk$ adb install firebase-appdistribution/test-app/build/outputs/apk/release/test-app-release.apk
```