@react-native-vector-icons/feather 12.0.0 → 12.0.1
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/build.gradle +5 -1
- package/package.json +2 -2
package/android/build.gradle
CHANGED
|
@@ -5,6 +5,10 @@ def isNewArchitectureEnabled() {
|
|
|
5
5
|
return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true"
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
+
def safeExtGet(prop, fallback) {
|
|
9
|
+
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
10
|
+
}
|
|
11
|
+
|
|
8
12
|
apply plugin: "com.android.library"
|
|
9
13
|
apply plugin: "kotlin-android"
|
|
10
14
|
|
|
@@ -32,7 +36,7 @@ android {
|
|
|
32
36
|
}
|
|
33
37
|
}
|
|
34
38
|
|
|
35
|
-
compileSdkVersion 31
|
|
39
|
+
compileSdkVersion safeExtGet('compileSdkVersion', 31)
|
|
36
40
|
}
|
|
37
41
|
|
|
38
42
|
dependencies {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-vector-icons/feather",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.1",
|
|
4
4
|
"description": "Feather font for react native vector icons",
|
|
5
5
|
"source": "./src/index.ts",
|
|
6
6
|
"main": "./lib/commonjs/index.js",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"registry": "https://registry.npmjs.org/"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@react-native-vector-icons/common": "^12.0.
|
|
79
|
+
"@react-native-vector-icons/common": "^12.0.1"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"@types/react": "^18.3.18",
|