expo-updates 0.13.2 → 0.13.3

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/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.13.3 — 2022-07-07
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fix proguard support in Android builds. ([#18035](https://github.com/expo/expo/pull/18035) by [@esamelson](https://github.com/esamelson))
18
+
13
19
  ## 0.13.2 — 2022-06-03
14
20
 
15
21
  ### 🐛 Bug fixes
@@ -4,7 +4,7 @@ apply plugin: 'kotlin-kapt'
4
4
  apply plugin: 'maven-publish'
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '0.13.2'
7
+ version = '0.13.3'
8
8
 
9
9
  apply from: "../scripts/create-manifest-android.gradle"
10
10
 
@@ -77,7 +77,7 @@ android {
77
77
  minSdkVersion safeExtGet("minSdkVersion", 21)
78
78
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
79
79
  versionCode 31
80
- versionName '0.13.2'
80
+ versionName '0.13.3'
81
81
  consumerProguardFiles("proguard-rules.pro")
82
82
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
83
83
  // uncomment below to export the database schema when making changes
@@ -1,3 +1,7 @@
1
1
  -keepclassmembers class com.facebook.react.ReactInstanceManager {
2
2
  private final com.facebook.react.bridge.JSBundleLoader mBundleLoader;
3
3
  }
4
+
5
+ -keepclassmembers class com.facebook.react.devsupport.DisabledDevSupportManager {
6
+ private final com.facebook.react.bridge.DefaultNativeModuleCallExceptionHandler mDefaultNativeModuleCallExceptionHandler;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "0.13.2",
3
+ "version": "0.13.3",
4
4
  "description": "Fetches and manages remotely-hosted assets and updates to your app's JS bundle.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -64,5 +64,5 @@
64
64
  "peerDependencies": {
65
65
  "expo": "*"
66
66
  },
67
- "gitHead": "8c27606412dae179402107417aa11a88530c2251"
67
+ "gitHead": "6c7bf5038ccdfbe3e881f86d63ab92b8314ec2c1"
68
68
  }