expo-template-bare-minimum 54.0.9 → 54.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -113,15 +113,18 @@ android {
113
113
  // Caution! In production, you need to generate your own keystore file.
114
114
  // see https://reactnative.dev/docs/signed-apk-android.
115
115
  signingConfig signingConfigs.debug
116
- shrinkResources (findProperty('android.enableShrinkResourcesInReleaseBuilds')?.toBoolean() ?: false)
116
+ def enableShrinkResources = findProperty('android.enableShrinkResourcesInReleaseBuilds') ?: 'false'
117
+ shrinkResources enableShrinkResources.toBoolean()
117
118
  minifyEnabled enableMinifyInReleaseBuilds
118
119
  proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
119
- crunchPngs (findProperty('android.enablePngCrunchInReleaseBuilds')?.toBoolean() ?: true)
120
+ def enablePngCrunchInRelease = findProperty('android.enablePngCrunchInReleaseBuilds') ?: 'true'
121
+ crunchPngs enablePngCrunchInRelease.toBoolean()
120
122
  }
121
123
  }
122
124
  packagingOptions {
123
125
  jniLibs {
124
- useLegacyPackaging (findProperty('expo.useLegacyPackaging')?.toBoolean() ?: false)
126
+ def enableLegacyPackaging = findProperty('expo.useLegacyPackaging') ?: 'false'
127
+ useLegacyPackaging enableLegacyPackaging.toBoolean()
125
128
  }
126
129
  }
127
130
  androidResources {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "expo-template-bare-minimum",
3
3
  "description": "This bare project template includes a minimal setup for using unimodules with React Native.",
4
4
  "license": "0BSD",
5
- "version": "54.0.9",
5
+ "version": "54.0.11",
6
6
  "main": "index.js",
7
7
  "scripts": {
8
8
  "start": "expo start --dev-client",
@@ -11,9 +11,9 @@
11
11
  "web": "expo start --web"
12
12
  },
13
13
  "dependencies": {
14
- "expo": "~54.0.0-preview.9",
15
- "expo-status-bar": "~3.0.4",
14
+ "expo": "~54.0.0-preview.11",
15
+ "expo-status-bar": "~3.0.5",
16
16
  "react": "19.1.0",
17
- "react-native": "0.81.0"
17
+ "react-native": "0.81.1"
18
18
  }
19
19
  }