expo-template-bare-minimum 51.0.44 → 51.0.46
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.
package/android/app/build.gradle
CHANGED
|
@@ -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 {
|
|
@@ -22,8 +22,8 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
|
|
|
22
22
|
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
|
23
23
|
android.useAndroidX=true
|
|
24
24
|
|
|
25
|
-
#
|
|
26
|
-
android.
|
|
25
|
+
# Enable AAPT2 PNG crunching
|
|
26
|
+
android.enablePngCrunchInReleaseBuilds=true
|
|
27
27
|
|
|
28
28
|
# Use this property to specify which architecture you want to build.
|
|
29
29
|
# You can also override it from the CLI using
|
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.
|
|
4
|
+
"version": "51.0.46",
|
|
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.
|
|
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"
|