Skip to content

Commit cff02be

Browse files
committed
fix: react native cli manifest to gradle compatibility
1 parent 8b87cb9 commit cff02be

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

Example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ PODS:
297297
- React-jsinspector (0.71.1)
298298
- React-logger (0.71.1):
299299
- glog
300-
- react-native-restart (0.0.25):
300+
- react-native-restart (0.0.26):
301301
- React-Core
302302
- React-perflogger (0.71.1)
303303
- React-RCTActionSheet (0.71.1):
@@ -571,7 +571,7 @@ SPEC CHECKSUMS:
571571
React-jsiexecutor: 60cf272aababc5212410e4249d17cea14fc36caa
572572
React-jsinspector: ff56004b0c974b688a6548c156d5830ad751ae07
573573
React-logger: 60a0b5f8bed667ecf9e24fecca1f30d125de6d75
574-
react-native-restart: b9b7be05710eec7561297acf27679db8be931c49
574+
react-native-restart: 57de40ee7a3fd485f8e972dbc9950c1cf52a6be2
575575
React-perflogger: ec8eef2a8f03ecfa6361c2c5fb9197ef4a29cc85
576576
React-RCTActionSheet: a0c023b86cf4c862fa9c4eb0f6f91fbe878fb2de
577577
React-RCTAnimation: 168d53718c74153947c0109f55900faa64d79439

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ iOS GIF | Android GIF
1414

1515
- Using `react-native < 0.62`? install `react-native-restart@0.0.17`
1616
- Using `0.71 > react-native >= 0.62`? install `react-native-restart@0.0.24`
17-
- Using `react-native >= 0.71`? install `react-native-restart@0.0.25` and above
17+
- Using `react-native >= 0.71`? install `react-native-restart@0.0.26` and above
1818

1919
### With `yarn`
2020

android/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ android {
2626
compileSdkVersion safeExtGet('compileSdkVersion')
2727

2828
defaultConfig {
29+
applicationId "com.reactnativerestart"
2930
minSdkVersion safeExtGet('minSdkVersion')
3031
targetSdkVersion safeExtGet('targetSdkVersion')
3132
versionCode 1
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2-
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.reactnativerestart">
33
</manifest>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-restart",
3-
"version": "0.0.25",
3+
"version": "0.0.26",
44
"description": "Sometimes you want to reload your app bundle during app runtime. This package will allow you to do it.",
55
"main": "lib/commonjs/index.js",
66
"module": "lib/module/index.js",

0 commit comments

Comments
 (0)