Coder Social home page Coder Social logo

autoresconfig's Introduction

AutoResConfig

For Android application projects that accept user-submitted translations, the number of supported languages may be large and growing. When new languages are added, developers need to manually update resConfig (1) and language array xml/class (2). Manual means there could be human error.

(1) resConfig limits the final packaged resources. Libraries may carry languages resources which the language is not supported by the application itself. Set resConfig could reduce apk size.

(2) If the application has a "choose language" feature, there must be an array of supported languages (could be as an Android resource XML or a Java class).

This plugin collect locales from values- folders, set resConfig, generate language array xml/class.

Usage

gradle-plugin

Replace all the <version> below with the version shows here.

  1. Add gradle plugin

    // "old way"
    buildscript {
        repositories {
            mavenCentral()
        }
        dependencies {
            classpath 'dev.rikka.tools.autoresconfig:gradle-plugin:<version>'
        }
    }
    // "new way"
    plugins {
        id 'dev.rikka.tools.autoresconfig' version '<version>'
    }
  2. Use the plugin in Android application module

    plugins {
        id('dev.rikka.tools.autoresconfig')
    }
    
  3. Config in Android application module

    autoResConfig {
        generateClass = true
        generatedClassFullName = "rikka.autoresconfig.Locales"
        generateRes = true
        generatedResPrefix = null
        generatedArrayFirstItem = "SYSTEM"
    
        // Generate Android 13 localeConfig xml
        // see https://developer.android.com/about/versions/13/features/app-languages#use-localeconfig
        generateLocaleConfig = true
    }

autoresconfig's People

Contributors

rikkaw avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.