mirror of
https://github.com/sawyerf/Castafiore.git
synced 2026-03-24 12:57:47 +08:00
12 lines
328 B
JavaScript
12 lines
328 B
JavaScript
const { withGradleProperties } = require('@expo/config-plugins')
|
|
|
|
module.exports = function withModifyGradle(config) {
|
|
return withGradleProperties(config, config => {
|
|
config.modResults.push({
|
|
type: 'property',
|
|
key: 'AsyncStorage_db_size_in_MB',
|
|
value: 1000,
|
|
});
|
|
return config;
|
|
});
|
|
}; |