@digitalartlab/expo-plugin-localization
Version:
Native language switching in your Expo app
9 lines (8 loc) • 344 B
TypeScript
import { ConfigPlugin } from "expo/config-plugins";
/**
* Adds the resourceConfigurations with selected locales to the defaultConfig in the build.gradle file
* See https://developer.android.com/guide/topics/resources/app-languages#gradle-config
*/
export declare const withAndroidLocalizableGradle: ConfigPlugin<{
locales: string[];
}>;