expo-template-bare-minimum 54.0.9 → 54.0.10
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 +6 -3
- package/package.json +4 -4
package/android/app/build.gradle
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
120
|
+
def enablePngCrunchInRelease = findProperty('android.enablePngCrunchInReleaseBuilds') ?: 'true'
|
|
121
|
+
crunchPngs enablePngCrunchInRelease.toBoolean()
|
|
120
122
|
}
|
|
121
123
|
}
|
|
122
124
|
packagingOptions {
|
|
123
125
|
jniLibs {
|
|
124
|
-
|
|
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.
|
|
5
|
+
"version": "54.0.10",
|
|
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.
|
|
15
|
-
"expo-status-bar": "~3.0.
|
|
14
|
+
"expo": "~54.0.0-preview.10",
|
|
15
|
+
"expo-status-bar": "~3.0.5",
|
|
16
16
|
"react": "19.1.0",
|
|
17
|
-
"react-native": "0.81.
|
|
17
|
+
"react-native": "0.81.1"
|
|
18
18
|
}
|
|
19
19
|
}
|