Publish your translations faster and simpler than ever before. Stop waiting for the next deployment and start publishing all your translations in real-time directly in Phrase.
For more details on how OTA works, visit the Phrase Help Center: https://support.phrase.com/hc/en-us/articles/5804059067804-Over-the-Air-Strings
With the SDK, the app will regularly check for updated translations and downloads them in the background. Translations are fetched when updateTranslations is called, which should usually happen in onCreate.
- The SDK requires at least appcompat version 1.2.0. If using an older version of appcompat, consider using SDK version 2.1.3
- The library depends on AndroidX to support backward compatible UI elements such as the toolbar
Add a new repository to the root build.gradle:
allprojects {
repositories {
…
maven { url "https://maven.download.phrase.com" }
}
}
Add the library as a dependency:
dependencies {
implementation "com.phrase.android:ota-sdk-compose:3.11.0"
// Or, if Jetpack Compose is not used
// implementation "com.phrase.android:ota-sdk:3.11.0"
…
}
Initialize the SDK in the application class and add the distribution ID and environment secret.
class MainApplication : Application {
override fun onCreate() {
super.onCreate()
Phrase.setup(this, "DISTRIBUTION_ID", "ENVIRONMENT_TOKEN")
Phrase.updateTranslations()
}
}When updating the Phrase OTA SDK, please check the migration guide if you need or should adapt your code to the changes.
Use Phrase provided composables to get the translations: phraseString(R.string.translation_key).
Inject the SDK in each activity, e.g. by creating a base activity which all other activities inherit from:
open class BaseActivity : AppCompatActivity {
override fun getDelegate() = Phrase.getDelegate(this, wrapContext = false)
}Former versions of the Phrase SDK relied on a Phrase wrapped Context. This is not necessary any more. Only drawback is that build in Android translation functions like
Context.getString()will not return Phrase translations any more. This change will mitigate possible issues in combination with components which dynamically register own resources. Most popular example isWebView.
Translations can be used as usual in layouts:
<TextView android:text="@string/translation_key" />And inside code:
val textView = findViewById<TextView>(R.id.text_id)
textView.setText(context.getPhraseString(R.string.translation_key))Java
PhraseLog.setLogLevel(Severity.Debug);Kotlin
PhraseLog.logLevel = Severity.VerboseOther supported logging values: None, Error, Warning, Info, Debug, Verbose
The SDK uses the app version by default to return a release which matches the release constraints for the min and max version. The app version must follow semantic versioning. Otherwise, no translations updates will be returned. In case the app does not use semantic versioning it is possible to manually override the used app version.
Example:
Phrase.setAppVersion("3.2.4");
The version must be set before calling updateTranslations().
The default timeout for translation downloads is set to 10s. The default can be changed with:
// Timeout in milliseconds
Phrase.setTimeout(10000);
If the handling of successful translation updates is required, attach a callback handler:
Phrase.updateTranslations(new TranslationsSyncCallback() {
@Override
public void onSuccess(boolean translationsChanged) {
}
@Override
public void onFailure() {
}
});Translation updates can also be triggered manually. Newly fetched translations are displayed upon the next application launch.
To make the latest translations immediately available, use the method Phrase.applyPendingUpdate(). This can be combined with listening for translation updates:
Phrase.updateTranslations(new TranslationsSyncCallback() {
@Override
public void onSuccess(boolean translationsChanged) {
if(translationsChanged) {
Phrase.applyPendingUpdate()
// Custom logic to refresh UI
}
}
@Override
public void onFailure() {
}
});The UI does not display translations automatically and must be recreated.
Phrase US data center is also supported. The US data center can be configured by calling:
Phrase.setDatacenter(PhraseDataCenter.US)
In case it is not possible to reach Phrase due to a missing network connection of the client or a service interruption, the SDK uses the bundled translations from the resource file. The regular updating of the bundled translations in the app is recommended. The SDK also caches translations locally on the device. If such a cache exists, it is used until the next translation update.
The SDK uses the most recent release for the translations. In case the versionName for the app is set, the most recent release that satisfies the version restrictions will be used.
Creating the new language in Phrase and create a new release. The SDK fetches the language when this is the device language of a user. Regularly adding a new strings.xml for new languages files when releasing a new app version is recommended or users will only see the fallback translations determined by Android at the first start of the app.
The SDK is closed source and can not be viewed or modified. If it is an organization requirement, audits can be provided. Contact us for more details if required.
Custom views can be translated using styled attributes. Since TypedArray does not allow overwriting the resources, slight changes in the custom view are required:
Before:
context.obtainStyledAttributes(attrs, R.styleable.CustomView, defStyleAttr, 0).use {
text = it.getText(R.styleable.CustomView_android_text)
}After:
context.obtainStyledAttributes(attrs, R.styleable.CustomView, defStyleAttr, 0).use {
text = it.getTextWithPhrase(R.styleable.CustomView_android_text)
}Before:
final TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.CustomView, defStyleAttr, 0);
try {
setText(ta.getText(R.styleable.CustomView_android_text));
} finally {
ta.recycle();
}After:
final TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.CustomView, defStyleAttr, 0);
try {
setText(PhraseTypedArray.getTextWithPhrase(ta, R.styleable.CustomView_android_text));
} finally {
ta.recycle();
}Example app
If translations are not being updated
- Ensure distribution id and environment secret are correct.
- Ensure a release was created on for the current app version.
- Reload the ViewController to make changes appear immediately.
If the wrong version of a translation is being used, ensure a release with the latest translations and the current app version is available and the versionName for the app set and are using the <major>.<minor>.<point>. format.
The Phrase OTA SDK supports different minimum Android SDK versions depending on the version you're using. Choose the appropriate SDK version based on your app's minimum supported Android version.
| OTA | Android SDK |
|---|---|
| v3.10.0+ | 21 |
| v0.1.0+ | 15 |
| OTA Compose | Android SDK |
|---|---|
| v3.2.5+ | 21 |
- Wrapping
Contextwith Phrase can lead to issues withWebView.WebViewinteractions which access Android resources might fail and can lead to app crashes. E.g. the opening of an HTML drop-down menu. Consider to useContext.getPhrase*()/Resources.getPhrase*()extension functions to get translations via Phrase. These functions do not need a wrappedContextand the wrapping can be removed or disabled. - Inflated menus and preferences are not supported yet
- Texts in custom views need to be updated manually
- Kotlin Multiplatform is not officially supported
- Supported Android versions: API level 21+
- Plural translations are only supported on Android API Level 24+
- Some libraries do not support automatic context unwrapping. For example
Hiltrequires to disable automatic context wrapping in Compose components. More details can be found here