Skip to content

Commit eb1ea77

Browse files
committed
Bump version number
1 parent c037cf1 commit eb1ea77

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

android/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ if (isNewArchitectureEnabled()) {
6060

6161
android {
6262
namespace = "com.zoontek.rnpermissions"
63+
6364
// Used to override the NDK path/version on internal CI or by allowing
6465
// users to customize the NDK path/version from their root project (e.g. for M1 support)
6566
if (rootProject.hasProperty("ndkPath")) {
@@ -71,14 +72,14 @@ android {
7172

7273
compileSdkVersion safeExtGet("compileSdkVersion", 33)
7374
buildToolsVersion safeExtGet("buildToolsVersion", "33.0.0")
75+
7476
defaultConfig {
7577
minSdkVersion safeExtGet("minSdkVersion", 21)
7678
targetSdkVersion safeExtGet("targetSdkVersion", 33)
7779
}
7880
lintOptions {
7981
abortOnError false
8082
}
81-
8283
sourceSets.main {
8384
java {
8485
if (!isNewArchitectureEnabled()) {

example/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ PODS:
419419
- React-jsi (= 0.71.4)
420420
- React-logger (= 0.71.4)
421421
- React-perflogger (= 0.71.4)
422-
- RNPermissions (3.8.0):
422+
- RNPermissions (3.8.1):
423423
- React-Core
424424
- RNVectorIcons (9.2.0):
425425
- React-Core
@@ -634,12 +634,12 @@ SPEC CHECKSUMS:
634634
React-RCTVibration: ad17efcfb2fa8f6bfd8ac0cf48d96668b8b28e0b
635635
React-runtimeexecutor: 8fa50b38df6b992c76537993a2b0553d3b088004
636636
ReactCommon: b49a4b00ca6d181ff74b17c12b2d59ac4add0bde
637-
RNPermissions: 930f326a122d3e8efb5af00602e7ca8f2c7a0762
637+
RNPermissions: 5edfd0aff896daa905bfb6c8286057e8fa1611a4
638638
RNVectorIcons: fcc2f6cb32f5735b586e66d14103a74ce6ad61f8
639639
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
640640
Yoga: 79dd7410de6f8ad73a77c868d3d368843f0c93e0
641641
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
642642

643643
PODFILE CHECKSUM: 2df7157942aab2be35e7c7f29f9ea2733aaa7fc0
644644

645-
COCOAPODS: 1.12.0
645+
COCOAPODS: 1.12.1

example/ios/RNPermissionsExample.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@
364364
COPY_PHASE_STRIP = NO;
365365
ENABLE_STRICT_OBJC_MSGSEND = YES;
366366
ENABLE_TESTABILITY = YES;
367-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
367+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
368368
GCC_C_LANGUAGE_STANDARD = gnu99;
369369
GCC_DYNAMIC_NO_PIC = NO;
370370
GCC_NO_COMMON_BLOCKS = YES;
@@ -398,6 +398,7 @@
398398
"-DFOLLY_MOBILE=1",
399399
"-DFOLLY_USE_LIBCPP=1",
400400
);
401+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
401402
SDKROOT = iphoneos;
402403
};
403404
name = Debug;
@@ -435,7 +436,7 @@
435436
COPY_PHASE_STRIP = YES;
436437
ENABLE_NS_ASSERTIONS = NO;
437438
ENABLE_STRICT_OBJC_MSGSEND = YES;
438-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
439+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
439440
GCC_C_LANGUAGE_STANDARD = gnu99;
440441
GCC_NO_COMMON_BLOCKS = YES;
441442
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
@@ -461,6 +462,7 @@
461462
"-DFOLLY_MOBILE=1",
462463
"-DFOLLY_USE_LIBCPP=1",
463464
);
465+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
464466
SDKROOT = iphoneos;
465467
VALIDATE_PRODUCT = YES;
466468
};

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-permissions",
3-
"version": "3.8.0",
3+
"version": "3.8.1",
44
"license": "MIT",
55
"description": "An unified permissions API for React Native on iOS, Android and Windows",
66
"author": "Mathieu Acthernoene <[email protected]>",

0 commit comments

Comments
 (0)