Wie im Artikel Übersicht über die Google Play-Dienste beschrieben, werden SDKs, die auf den Google Play-Diensten basieren, von On-Device-Diensten auf von Google zertifizierten Android-Geräten unterstützt. Um Speicherplatz und Arbeitsspeicher auf allen Geräten zu sparen, werden einige Dienste als Module bereitgestellt, die bei Bedarf installiert werden, wenn Ihre App die entsprechende Funktion benötigt. Beispielsweise bietet ML Kit diese Option bei der Verwendung von Modellen in den Google Play-Diensten.
In den meisten Fällen werden die erforderlichen Module vom Google Play Services SDK automatisch heruntergeladen und installiert, wenn Ihre App eine API verwendet, für die sie erforderlich sind. Möglicherweise möchten Sie jedoch mehr Kontrolle über den Prozess haben, z. B. wenn Sie die Nutzerfreundlichkeit verbessern möchten, indem Sie das Modul im Voraus installieren.
Mit der ModuleInstallClient API haben Sie folgende Möglichkeiten:
- Prüfen, ob die Module bereits auf dem Gerät installiert sind.
- Anfordern, dass die Module installiert werden.
- Den Installationsfortschritt beobachten.
- Fehler während des Installationsprozesses verarbeiten.
In dieser Anleitung wird beschrieben, wie Sie ModuleInstallClient verwenden, um Module in Ihrer
App zu verwalten. In den folgenden Code-Snippets wird das
TensorFlow Lite SDK
(play-services-tflite-java) als Beispiel verwendet. Diese Schritte gelten jedoch für
jede Bibliothek, die in OptionalModuleApi eingebunden ist.
Hinweis
Führen Sie die Schritte in den folgenden Abschnitten aus, um Ihre App vorzubereiten.
Voraussetzungen für die App
Achten Sie darauf, dass in der Build-Datei Ihrer App die folgenden Werte verwendet werden:
minSdkVersionvon23oder höher
Eigene App konfigurieren
Fügen Sie in der Datei
settings.gradleauf oberster Ebene das Maven-Repository von Google und das Maven Central Repository in den BlockdependencyResolutionManagementein:dependencyResolutionManagement { repositories { google() mavenCentral() } }Fügen Sie in der Gradle-Build-Datei Ihres Moduls (in der Regel
app/build.gradle) die Google Play Services-Abhängigkeiten fürplay-services-baseundplay-services-tflite-javahinzu:dependencies { implementation 'com.google.android.gms:play-services-base:18.10.0' implementation 'com.google.android.gms:play-services-tflite-java:16.4.0' }
Prüfen, ob Module verfügbar sind
Bevor Sie versuchen, ein Modul zu installieren, können Sie prüfen, ob es bereits auf dem Gerät installiert ist. So vermeiden Sie unnötige Installationsanfragen.
Rufen Sie eine Instanz von
ModuleInstallClientab:Kotlin
val moduleInstallClient = ModuleInstall.getClient(context)
Java
ModuleInstallClient moduleInstallClient = ModuleInstall.getClient(context);
Prüfen Sie die Verfügbarkeit eines Moduls mit der zugehörigen
OptionalModuleApi. Diese API wird vom Google Play Services SDK bereitgestellt, das Sie verwenden.Kotlin
val optionalModuleApi = TfLite.getClient(context) moduleInstallClient .areModulesAvailable(optionalModuleApi) .addOnSuccessListener { if (it.areModulesAvailable()) { // Modules are present on the device... } else { // Modules are not present on the device... } } .addOnFailureListener { // Handle failure... }
Java
OptionalModuleApi optionalModuleApi = TfLite.getClient(context); moduleInstallClient .areModulesAvailable(optionalModuleApi) .addOnSuccessListener( response -> { if (response.areModulesAvailable()) { // Modules are present on the device... } else { // Modules are not present on the device... } }) .addOnFailureListener( e -> { // Handle failure… });
Verzögerte Installation anfordern
Wenn Sie das Modul nicht sofort benötigen, können Sie eine verzögerte Installation anfordern. So können die Google Play-Dienste das Modul im Hintergrund installieren, möglicherweise wenn das Gerät im Leerlauf ist und mit WLAN verbunden ist.
Rufen Sie eine Instanz von
ModuleInstallClientab:Kotlin
val moduleInstallClient = ModuleInstall.getClient(context)
Java
ModuleInstallClient moduleInstallClient = ModuleInstall.getClient(context);
Senden Sie die verzögerte Anfrage:
Kotlin
val optionalModuleApi = TfLite.getClient(context) moduleInstallClient.deferredInstall(optionalModuleApi)
Java
OptionalModuleApi optionalModuleApi = TfLite.getClient(context); moduleInstallClient.deferredInstall(optionalModuleApi);
Dringende Modulinstallation anfordern
Wenn Ihre App das Modul sofort benötigt, können Sie eine dringende Installation anfordern. Das Modul wird so schnell wie möglich installiert, auch wenn dabei mobile Daten verwendet werden.
Rufen Sie eine Instanz von
ModuleInstallClientab:Kotlin
val moduleInstallClient = ModuleInstall.getClient(context)
Java
ModuleInstallClient moduleInstallClient = ModuleInstall.getClient(context);
Optional: Erstellen Sie einen
InstallStatusListener, um den Installationsfortschritt zu beobachten.Wenn Sie den Downloadfortschritt in der UI Ihrer App anzeigen möchten (z. B. mit einer Fortschrittsanzeige), können Sie einen
InstallStatusListenererstellen, um Updates zu erhalten.Kotlin
inner class ModuleInstallProgressListener : InstallStatusListener { override fun onInstallStatusUpdated(update: ModuleInstallStatusUpdate) { // Progress info is only set when modules are in the progress of downloading. update.progressInfo?.let { val progress = (it.bytesDownloaded * 100 / it.totalBytesToDownload).toInt() // Set the progress for the progress bar. progressBar.setProgress(progress) } if (isTerminateState(update.installState)) { moduleInstallClient.unregisterListener(this) } } fun isTerminateState(@InstallState state: Int): Boolean { return state == STATE_CANCELED || state == STATE_COMPLETED || state == STATE_FAILED } } val listener = ModuleInstallProgressListener()
Java
static final class ModuleInstallProgressListener implements InstallStatusListener { @Override public void onInstallStatusUpdated(ModuleInstallStatusUpdate update) { ProgressInfo progressInfo = update.getProgressInfo(); // Progress info is only set when modules are in the progress of downloading. if (progressInfo != null) { int progress = (int) (progressInfo.getBytesDownloaded() * 100 / progressInfo.getTotalBytesToDownload()); // Set the progress for the progress bar. progressBar.setProgress(progress); } // Handle failure status maybe… // Unregister listener when there are no more install status updates. if (isTerminateState(update.getInstallState())) { moduleInstallClient.unregisterListener(this); } } public boolean isTerminateState(@InstallState int state) { return state == STATE_CANCELED || state == STATE_COMPLETED || state == STATE_FAILED; } } InstallStatusListener listener = new ModuleInstallProgressListener();
Konfigurieren Sie die
ModuleInstallRequestund fügen Sie der Anfrage dieOptionalModuleApihinzu:Kotlin
val optionalModuleApi = TfLite.getClient(context) val moduleInstallRequest = ModuleInstallRequest.newBuilder() .addApi(optionalModuleApi) // Add more APIs if you would like to request multiple modules. // .addApi(...) // Set the listener if you need to monitor the download progress. // .setListener(listener) .build()
Java
OptionalModuleApi optionalModuleApi = TfLite.getClient(context); ModuleInstallRequest moduleInstallRequest = ModuleInstallRequest.newBuilder() .addApi(optionalModuleApi) // Add more API if you would like to request multiple modules //.addApi(...) // Set the listener if you need to monitor the download progress //.setListener(listener) .build();
Senden Sie die Installationsanfrage:
Kotlin
moduleInstallClient .installModules(moduleInstallRequest) .addOnSuccessListener { if (it.areModulesAlreadyInstalled()) { // Modules are already installed when the request is sent. } // The install request has been sent successfully. This does not mean // the installation is completed. To monitor the install status, set an // InstallStatusListener to the ModuleInstallRequest. } .addOnFailureListener { // Handle failure… }
Java
moduleInstallClient.installModules(moduleInstallRequest) .addOnSuccessListener( response -> { if (response.areModulesAlreadyInstalled()) { // Modules are already installed when the request is sent. } // The install request has been sent successfully. This does not // mean the installation is completed. To monitor the install // status, set an InstallStatusListener to the // ModuleInstallRequest. }) .addOnFailureListener( e -> { // Handle failure... });
App mit FakeModuleInstallClient testen
Die Google Play Services SDKs bieten FakeModuleInstallClient, mit dem Sie die Ergebnisse der Modulinstallations-APIs in Tests mithilfe der Abhängigkeitsinjektion simulieren können. So können Sie das Verhalten Ihrer App in verschiedenen Szenarien testen, ohne sie auf einem echten Gerät bereitstellen zu müssen.
Voraussetzungen für die App
Konfigurieren Sie Ihre App für die Verwendung des Hilt-Frameworks für die Abhängigkeitsinjektion.
ModuleInstallClient in Tests durch FakeModuleInstallClient ersetzen
Wenn Sie FakeModuleInstallClient in Ihren Tests verwenden möchten, müssen Sie die
ModuleInstallClient-Bindung durch die Fake-Implementierung ersetzen.
Abhängigkeit hinzufügen:
Fügen Sie in der Gradle-Build-Datei Ihres Moduls (in der Regel
app/build.gradle) die Google Play Services-Abhängigkeiten fürplay-services-base-testingin Ihrem Test hinzu.dependencies { // other dependencies... testImplementation 'com.google.android.gms:play-services-base-testing:16.2.0' }Erstellen Sie ein Hilt-Modul, um
ModuleInstallClientbereitzustellen:Kotlin
@Module @InstallIn(ActivityComponent::class) object ModuleInstallModule { @Provides fun provideModuleInstallClient( @ActivityContext context: Context ): ModuleInstallClient = ModuleInstall.getClient(context) }
Java
@Module @InstallIn(ActivityComponent.class) public class ModuleInstallModule { @Provides public static ModuleInstallClient provideModuleInstallClient( @ActivityContext Context context) { return ModuleInstall.getClient(context); } }
Fügen Sie
ModuleInstallClientin die Aktivität ein:Kotlin
@AndroidEntryPoint class MyActivity: AppCompatActivity() { @Inject lateinit var moduleInstallClient: ModuleInstallClient ... }
Java
@AndroidEntryPoint public class MyActivity extends AppCompatActivity { @Inject ModuleInstallClient moduleInstallClient; ... }
Ersetzen Sie die Bindung im Test:
Kotlin
@UninstallModules(ModuleInstallModule::class) @HiltAndroidTest class MyActivityTest { ... private val context:Context = ApplicationProvider.getApplicationContext() private val fakeModuleInstallClient = FakeModuleInstallClient(context) @BindValue @JvmField val moduleInstallClient: ModuleInstallClient = fakeModuleInstallClient ... }
Java
@UninstallModules(ModuleInstallModule.class) @HiltAndroidTest class MyActivityTest { ... private static final Context context = ApplicationProvider.getApplicationContext(); private final FakeModuleInstallClient fakeModuleInstallClient = new FakeModuleInstallClient(context); @BindValue ModuleInstallClient moduleInstallClient = fakeModuleInstallClient; ... }
Verschiedene Szenarien simulieren
Mit FakeModuleInstallClient können Sie verschiedene Szenarien simulieren, z. B.:
- Module sind bereits installiert.
- Module sind auf dem Gerät nicht verfügbar.
- Die Installation schlägt fehl.
- Die verzögerte Installationsanfrage ist erfolgreich oder schlägt fehl.
- Die dringende Installationsanfrage ist erfolgreich oder schlägt fehl.
Kotlin
@Test fun checkAvailability_available() { // Reset any previously installed modules. fakeModuleInstallClient.reset() val availableModule = TfLite.getClient(context) fakeModuleInstallClient.setInstalledModules(api) // Verify the case where modules are already available... } @Test fun checkAvailability_unavailable() { // Reset any previously installed modules. fakeModuleInstallClient.reset() // Do not set any installed modules in the test. // Verify the case where modules unavailable on device... } @Test fun checkAvailability_failed() { // Reset any previously installed modules. fakeModuleInstallClient.reset() fakeModuleInstallClient.setModulesAvailabilityTask(Tasks.forException(RuntimeException())) // Verify the case where an RuntimeException happened when trying to get module's availability... }
Java
@Test public void checkAvailability_available() { // Reset any previously installed modules. fakeModuleInstallClient.reset(); OptionalModuleApi optionalModuleApi = TfLite.getClient(context); fakeModuleInstallClient.setInstalledModules(api); // Verify the case where modules are already available... } @Test public void checkAvailability_unavailable() { // Reset any previously installed modules. fakeModuleInstallClient.reset(); // Do not set any installed modules in the test. // Verify the case where modules unavailable on device... } @Test public void checkAvailability_failed() { fakeModuleInstallClient.setModulesAvailabilityTask(Tasks.forException(new RuntimeException())); // Verify the case where an RuntimeException happened when trying to get module's availability... }
Ergebnis für eine verzögerte Installationsanfrage simulieren
Kotlin
@Test fun deferredInstall_success() { fakeModuleInstallClient.setDeferredInstallTask(Tasks.forResult(null)) // Verify the case where the deferred install request has been sent successfully... } @Test fun deferredInstall_failed() { fakeModuleInstallClient.setDeferredInstallTask(Tasks.forException(RuntimeException())) // Verify the case where an RuntimeException happened when trying to send the deferred install request... }
Java
@Test public void deferredInstall_success() { fakeModuleInstallClient.setDeferredInstallTask(Tasks.forResult(null)); // Verify the case where the deferred install request has been sent successfully... } @Test public void deferredInstall_failed() { fakeModuleInstallClient.setDeferredInstallTask(Tasks.forException(new RuntimeException())); // Verify the case where an RuntimeException happened when trying to send the deferred install request... }
Ergebnis für eine dringende Installationsanfrage simulieren
Kotlin
@Test fun installModules_alreadyExist() { // Reset any previously installed modules. fakeModuleInstallClient.reset(); OptionalModuleApi optionalModuleApi = TfLite.getClient(context); fakeModuleInstallClient.setInstalledModules(api); // Verify the case where the modules already exist when sending the install request... } @Test fun installModules_withoutListener() { // Reset any previously installed modules. fakeModuleInstallClient.reset(); // Verify the case where the urgent install request has been sent successfully... } @Test fun installModules_withListener() { // Reset any previously installed modules. fakeModuleInstallClient.reset(); // Generates a ModuleInstallResponse and set it as the result for installModules(). val moduleInstallResponse = FakeModuleInstallUtil.generateModuleInstallResponse() fakeModuleInstallClient.setInstallModulesTask(Tasks.forResult(moduleInstallResponse)) // Verify the case where the urgent install request has been sent successfully... // Generates some fake ModuleInstallStatusUpdate and send it to listener. val update = FakeModuleInstallUtil.createModuleInstallStatusUpdate( moduleInstallResponse.sessionId, STATE_COMPLETED) fakeModuleInstallClient.sendInstallUpdates(listOf(update)) // Verify the corresponding updates are handled correctly... } @Test fun installModules_failed() { fakeModuleInstallClient.setInstallModulesTask(Tasks.forException(RuntimeException())) // Verify the case where an RuntimeException happened when trying to send the urgent install request... }
Java
@Test public void installModules_alreadyExist() { // Reset any previously installed modules. fakeModuleInstallClient.reset(); OptionalModuleApi optionalModuleApi = TfLite.getClient(context); fakeModuleInstallClient.setInstalledModules(api); // Verify the case where the modules already exist when sending the install request... } @Test public void installModules_withoutListener() { // Reset any previously installed modules. fakeModuleInstallClient.reset(); // Verify the case where the urgent install request has been sent successfully... } @Test public void installModules_withListener() { // Reset any previously installed modules. fakeModuleInstallClient.reset(); // Generates a ModuleInstallResponse and set it as the result for installModules(). ModuleInstallResponse moduleInstallResponse = FakeModuleInstallUtil.generateModuleInstallResponse(); fakeModuleInstallClient.setInstallModulesTask(Tasks.forResult(moduleInstallResponse)); // Verify the case where the urgent install request has been sent successfully... // Generates some fake ModuleInstallStatusUpdate and send it to listener. ModuleInstallStatusUpdate update = FakeModuleInstallUtil.createModuleInstallStatusUpdate( moduleInstallResponse.getSessionId(), STATE_COMPLETED); fakeModuleInstallClient.sendInstallUpdates(ImmutableList.of(update)); // Verify the corresponding updates are handled correctly... } @Test public void installModules_failed() { fakeModuleInstallClient.setInstallModulesTask(Tasks.forException(new RuntimeException())); // Verify the case where an RuntimeException happened when trying to send the urgent install request... }