Google Mobile Ads Lite SDK

和任何 Android 程式庫一樣,Google Play 服務 SDK 會增加包含該 SDK 的應用程式大小。Google Mobile Ads Lite SDK 是 Google Mobile Ads SDK 的輕量版,可用於減少這類影響。其大小僅為一般 SDK 的一部分。

除了縮減大小,使用 Lite SDK 還可減少應用程式中參照的方法總數。這在部署至舊版 Android 時特別實用,因為開發人員可能會遇到 64K 參照限制

以下說明如何設定 Gradle,將 Lite SDK 納入應用程式:

dependencies {
    implementation 'com.google.android.gms:play-services-ads-lite:23.5.0'
}

Lite SDK 的限制

Lite SDK 僅適用於透過 Google Play 商店發行的應用程式。

與其他 Google Play 服務不同,Google Play 服務 APK 中的標準 Google Mobile Ads SDK 實作也包含在 Google Play 服務用戶端程式庫中。這樣一來,即使裝置沒有 Google Play 服務 APK,也能提供支援。在執行階段,SDK 會比較用戶端程式庫和 Google Play 服務 APK 的版本,並使用較新的版本。

Lite SDK 會從用戶端程式庫中移除 Google Mobile Ads SDK 實作,只保留 Google Play 服務 APK 的介面。Lite SDK 會依賴 APK 的實作方式。如果您在 Google Play 商店以外部署應用程式,則無法保證使用者的裝置已安裝 Google Play 服務 APK。

在搭載最新版 Google Play 服務的裝置上,Lite SDK 的行為與標準 SDK 相同。不過,如果裝置上的 Google Play 服務過舊或不存在,Lite SDK 可能會參照無法使用的 API,或是已從 Google Play 服務 APK 中的 API 變更而來的 API。這會導致無操作並記錄錯誤,可能導致廣告無法放送給這些裝置。