Skip to content

Aiko-Dev/split-abi-expo-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

split-abi-expo-plugin

Very basic plugin to control the split abi property of the gradle build in your Expo app configuration without EAS Build. Expo >= 52 and < 54 are supported (tested on Expo SDK 52).

Install

example with npm:

npm install git+https://github.com/Aiko-Dev/split-abi-expo-plugin.git

Usage

In your app.config.js (or .ts), you can configure the plugin:

const config = {
  // rest of your config...

  plugins: [
    [
      "split-abi-expo-plugin",
      {
        // See: https://developer.android.com/build/configure-apk-splits#configure-abi-split
        enable: true, // Default: true
        universalApk: true, // Default: false
        include: ["armeabi-v7a", "arm64-v8a", "x86", "x86_64"], // Default: []
      },
    ],
  ]
}

About

🧩 Very basic plugin to control the split abi property of the gradle build in your Expo app configuration without EAS Build

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors