Skip to content

Commit a024e18

Browse files
feat(expo): add an Expo config plugin to simplify enabling Next Storage on Android
Fixes #750 Co-Authored-By: Bill Spooner <[email protected]>
1 parent db99ba9 commit a024e18

File tree

11 files changed

+3331
-83
lines changed

11 files changed

+3331
-83
lines changed

.changeset/shaggy-eggs-grin.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@react-native-async-storage/expo-plugin": minor
3+
---
4+
5+
Add an Expo config plugin to simplify enabling Next Storage on Android

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"workspaces": [
4646
"packages/api",
4747
"packages/default-storage",
48+
"packages/default-storage-expo-plugin",
4849
"packages/eslint-config",
4950
"packages/sqlite-storage",
5051
"packages/website"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// @generated by expo-module-scripts
2+
module.exports = require('expo-module-scripts/eslintrc.base.js');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("./build");
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "@react-native-async-storage/expo-plugin",
3+
"version": "1.0.0",
4+
"description": "Asynchronous, persistent, key-value storage system for React Native.",
5+
"main": "build/index.js",
6+
"types": "build/index.d.ts",
7+
"files": [
8+
"build/",
9+
"src/",
10+
"app.plugin.js"
11+
],
12+
"author": "Two Doors Dev <[email protected]>",
13+
"contributors": [
14+
"Hassan Khan <[email protected]> (https://github.com/hassankhan)",
15+
"Bill Spooner <[email protected]> (https://github.com/sandyklark)"
16+
],
17+
"homepage": "https://github.com/react-native-async-storage/async-storage#readme",
18+
"license": "MIT",
19+
"keywords": [
20+
"react-native",
21+
"react native",
22+
"async storage",
23+
"asyncstorage",
24+
"storage",
25+
"expo",
26+
"expo config plugin"
27+
],
28+
"repository": {
29+
"type": "git",
30+
"url": "https://github.com/react-native-async-storage/async-storage.git",
31+
"directory": "packages/default-storage-expo-plugin"
32+
},
33+
"scripts": {
34+
"prepack": "yarn build",
35+
"prepare": "expo-module prepare",
36+
"prepublishOnly": "expo-module prepublishOnly",
37+
"build": "CI=true expo-module build",
38+
"clean": "expo-module clean",
39+
"lint": "expo-module lint",
40+
"test:ts": "yarn build --noEmit",
41+
"test:lint": "yarn lint"
42+
},
43+
"devDependencies": {
44+
"@expo/config-plugins": "^8.0.8",
45+
"eslint": "^8.56.0",
46+
"eslint-plugin-prettier": "^5.2.1",
47+
"expo-module-scripts": "^3.5.2",
48+
"prettier": "^3.3.3"
49+
},
50+
"peerDependencies": {
51+
"expo": "^51"
52+
},
53+
"upstreamPackage": "@react-native-async-storage/async-storage"
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { ConfigPlugin, withGradleProperties } from "@expo/config-plugins";
2+
3+
import { AsyncStorageOptions } from "../types";
4+
5+
export const withNextStorage: ConfigPlugin<AsyncStorageOptions> = (
6+
config,
7+
props
8+
) => {
9+
const useNextStorage = props?.android?.nextStorage?.enabled ?? false;
10+
11+
if (!useNextStorage) {
12+
return config;
13+
}
14+
15+
return withGradleProperties(config, (config) => {
16+
config.modResults.push({
17+
key: "AsyncStorage_useNextStorage",
18+
value: "true",
19+
type: "property",
20+
});
21+
22+
return config;
23+
});
24+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import type { ConfigPlugin } from "@expo/config-plugins";
2+
3+
import { withNextStorage } from "./android/withNextStorage";
4+
import { AsyncStorageOptions } from "./types";
5+
6+
const DEFAULT_OPTS: AsyncStorageOptions = {
7+
android: {
8+
nextStorage: {
9+
enabled: false,
10+
},
11+
},
12+
};
13+
14+
const withAsyncStorage: ConfigPlugin<AsyncStorageOptions> = (config, props) => {
15+
const normalizedProps = { ...DEFAULT_OPTS, ...props };
16+
config = withNextStorage(config, normalizedProps);
17+
return config;
18+
};
19+
20+
export default withAsyncStorage;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export type AsyncStorageOptions = {
2+
android: {
3+
nextStorage?: {
4+
enabled: boolean;
5+
};
6+
};
7+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "expo-module-scripts/tsconfig.plugin",
3+
"compilerOptions": {
4+
"outDir": "build",
5+
"rootDir": "src"
6+
},
7+
"include": ["./src"],
8+
"exclude": ["**/__mocks__/*", "**/__tests__/*"]
9+
}

packages/website/docs/advanced/Next.md

+45
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,51 @@ If you want to use different KSP version, you can set a property in `gradle.prop
102102
AsyncStorage_next_kspVersion=1.9.24-1.0.20
103103
```
104104

105+
### Configuration with Expo
106+
107+
If you are using Expo, you can configure the feature using [config plugins](https://docs.expo.dev/guides/config-plugins/).
108+
109+
First, install the required plugins:
110+
111+
```bash
112+
expo install expo-build-properties @react-native-async-storage/expo-plugin
113+
```
114+
115+
Next, in your Expo project's `app.json`, add the plugins:
116+
117+
```json
118+
{
119+
"expo": {
120+
"plugins": [
121+
[
122+
"expo-build-properties",
123+
{
124+
"android": {
125+
"kotlinVersion": "1.9.23"
126+
}
127+
}
128+
],
129+
[
130+
"@react-native-async-storage/expo-plugin",
131+
{
132+
"android": {
133+
"nextStorage": {
134+
"enabled": true
135+
}
136+
}
137+
}
138+
]
139+
]
140+
}
141+
}
142+
```
143+
144+
Finally, use the Expo prebuild command to re-generate the Android project:
145+
146+
```bash
147+
expo prebuild --platform android --clean
148+
```
149+
105150
### Notable changes
106151

107152
Alongside of a warning regarding `key`/`value`, errors are thrown when:

0 commit comments

Comments
 (0)