Seperti yang dijelaskan dalam artikel Ringkasan layanan Google Play, SDK yang didukung oleh layanan Google Play didukung oleh layanan di perangkat di perangkat Android bersertifikasi Google. Untuk menghemat penyimpanan dan memori di seluruh armada perangkat, beberapa layanan disediakan sebagai modul yang diinstal sesuai permintaan saat aplikasi Anda memerlukan fungsi yang relevan. Misalnya, ML Kit menyediakan opsi ini saat menggunakan model di layanan Google Play.
Pada umumnya, SDK layanan Google Play mendownload dan menginstal modul yang diperlukan secara otomatis saat aplikasi Anda menggunakan API yang memerlukannya. Namun, Anda mungkin ingin memiliki lebih banyak kontrol atas proses tersebut, seperti saat Anda ingin meningkatkan pengalaman pengguna dengan menginstal modul terlebih dahulu.
ModuleInstallClient
API memberi Anda kemampuan untuk:
- Periksa apakah modul sudah diinstal di perangkat.
- Meminta untuk menginstal modul.
- Pantau progres penginstalan.
- Menangani error selama proses penginstalan.
Panduan ini menunjukkan cara menggunakan ModuleInstallClient
untuk mengelola modul di
aplikasi Anda. Perhatikan bahwa cuplikan kode berikut menggunakan
TensorFlow Lite SDK
(play-services-tflite-java
) sebagai contoh, tetapi langkah-langkah ini berlaku untuk
library apa pun yang terintegrasi dengan OptionalModuleApi
.
Sebelum memulai
Untuk mempersiapkan aplikasi Anda, selesaikan langkah-langkah di bagian berikut ini.
Prasyarat aplikasi
Pastikan bahwa file build aplikasi Anda menggunakan nilai berikut:
minSdkVersion
dari23
atau yang lebih tinggi
Mengonfigurasi aplikasi Anda
Dalam file
settings.gradle
tingkat atas, sertakan repositori Maven Google dan repositori pusat Maven dalam blokdependencyResolutionManagement
:dependencyResolutionManagement { repositories { google() mavenCentral() } }
Dalam file build Gradle modul Anda (biasanya
app/build.gradle
), tambahkan dependensi layanan Google Play untukplay-services-base
danplay-services-tflite-java
:dependencies { implementation 'com.google.android.gms:play-services-base:18.7.0' implementation 'com.google.android.gms:play-services-tflite-java:16.4.0' }
Memeriksa apakah modul tersedia
Sebelum mencoba menginstal modul, Anda dapat memeriksa apakah modul tersebut sudah diinstal di perangkat. Tindakan ini membantu Anda menghindari permintaan penginstalan yang tidak perlu.
Dapatkan instance
ModuleInstallClient
:Kotlin
val moduleInstallClient = ModuleInstall.getClient(context)
Java
ModuleInstallClient moduleInstallClient = ModuleInstall.getClient(context);
Periksa ketersediaan modul menggunakan
OptionalModuleApi
-nya. API ini disediakan oleh SDK layanan Google Play yang Anda gunakan.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… });
Meminta penginstalan yang ditangguhkan
Jika tidak memerlukan modul segera, Anda dapat meminta penginstalan yang ditangguhkan. Hal ini memungkinkan layanan Google Play menginstal modul di latar belakang, mungkin saat perangkat tidak ada aktivitas dan terhubung ke Wi-Fi.
Dapatkan instance
ModuleInstallClient
:Kotlin
val moduleInstallClient = ModuleInstall.getClient(context)
Java
ModuleInstallClient moduleInstallClient = ModuleInstall.getClient(context);
Kirim permintaan yang ditangguhkan:
Kotlin
val optionalModuleApi = TfLite.getClient(context) moduleInstallClient.deferredInstall(optionalModuleApi)
Java
OptionalModuleApi optionalModuleApi = TfLite.getClient(context); moduleInstallClient.deferredInstall(optionalModuleApi);
Meminta penginstalan modul yang mendesak
Jika aplikasi Anda memerlukan modul segera, Anda dapat meminta penginstalan mendesak. Tindakan ini akan mencoba menginstal modul secepat mungkin, meskipun harus menggunakan data seluler.
Dapatkan instance
ModuleInstallClient
:Kotlin
val moduleInstallClient = ModuleInstall.getClient(context)
Java
ModuleInstallClient moduleInstallClient = ModuleInstall.getClient(context);
(Opsional) Buat
InstallStatusListener
untuk memantau progres penginstalan.Jika ingin menampilkan progres download di UI aplikasi (misalnya, dengan status progres), Anda dapat membuat
InstallStatusListener
untuk menerima update.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();
Konfigurasikan
ModuleInstallRequest
dan tambahkanOptionalModuleApi
ke permintaan: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();
Kirim permintaan penginstalan:
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... });
Menguji aplikasi dengan FakeModuleInstallClient
SDK layanan Google Play menyediakan FakeModuleInstallClient
untuk memungkinkan Anda
menyimulasikan hasil API penginstalan modul dalam pengujian menggunakan injeksi
dependensi. Hal ini membantu Anda menguji perilaku aplikasi dalam berbagai skenario
tanpa perlu men-deploy-nya ke perangkat sungguhan.
Prasyarat aplikasi
Konfigurasikan aplikasi Anda untuk menggunakan framework injeksi dependensi Hilt.
Mengganti ModuleInstallClient
dengan FakeModuleInstallClient
dalam pengujian
Untuk menggunakan FakeModuleInstallClient
dalam pengujian, Anda harus mengganti
binding ModuleInstallClient
dengan implementasi palsu.
Menambahkan dependensi:
Dalam file build Gradle modul (biasanya
app/build.gradle
), tambahkan dependensi layanan Google Play untukplay-services-base-testing
dalam pengujian Anda.dependencies { // other dependencies... testImplementation 'com.google.android.gms:play-services-base-testing:16.1.0' }
Buat modul Hilt untuk menyediakan
ModuleInstallClient
: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); } }
Masukkan
ModuleInstallClient
dalam aktivitas:Kotlin
@AndroidEntryPoint class MyActivity: AppCompatActivity() { @Inject lateinit var moduleInstallClient: ModuleInstallClient ... }
Java
@AndroidEntryPoint public class MyActivity extends AppCompatActivity { @Inject ModuleInstallClient moduleInstallClient; ... }
Ganti binding dalam pengujian:
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; ... }
Simulasikan berbagai skenario
Dengan FakeModuleInstallClient
, Anda dapat menyimulasikan berbagai skenario, seperti:
- Modul sudah diinstal.
- Modul tidak tersedia di perangkat.
- Proses penginstalan gagal.
- Permintaan penginstalan yang ditangguhkan berhasil atau gagal.
- Permintaan penginstalan mendesak berhasil atau gagal.
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... }
Menyimulasikan hasil untuk permintaan penginstalan yang ditangguhkan
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... }
Menyimulasikan hasil untuk permintaan penginstalan yang mendesak
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... }