expo-template-bare-minimum 51.0.45 → 51.0.47

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.
@@ -110,6 +110,7 @@ android {
110
110
  shrinkResources (findProperty('android.enableShrinkResourcesInReleaseBuilds')?.toBoolean() ?: false)
111
111
  minifyEnabled enableProguardInReleaseBuilds
112
112
  proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
113
+ crunchPngs (findProperty('android.enablePngCrunchInReleaseBuilds')?.toBoolean() ?: true)
113
114
  }
114
115
  }
115
116
  packagingOptions {
@@ -25,6 +25,9 @@ android.useAndroidX=true
25
25
  # Automatically convert third-party libraries to use AndroidX
26
26
  android.enableJetifier=true
27
27
 
28
+ # Enable AAPT2 PNG crunching
29
+ android.enablePngCrunchInReleaseBuilds=true
30
+
28
31
  # Use this property to specify which architecture you want to build.
29
32
  # You can also override it from the CLI using
30
33
  # ./gradlew <task> -PreactNativeArchitectures=x86_64
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
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
- "version": "51.0.45",
4
+ "version": "51.0.47",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "start": "expo start --dev-client",
@@ -10,7 +10,7 @@
10
10
  "web": "expo start --web"
11
11
  },
12
12
  "dependencies": {
13
- "expo": "~51.0.23",
13
+ "expo": "~51.0.24",
14
14
  "expo-status-bar": "~1.12.1",
15
15
  "react": "18.2.0",
16
16
  "react-native": "0.74.3"