expo-local-authentication 15.0.3-canary-20250124-42fe332 → 15.0.3-canary-20250207-8bc5146
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 +2 -3
- package/android/build.gradle +21 -9
- package/expo-module.config.json +0 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,9 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
_This version does not introduce any user-facing changes._
|
|
13
|
+
- [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
|
|
14
|
+
- [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
|
|
16
15
|
|
|
17
16
|
## 15.0.1 — 2024-10-22
|
|
18
17
|
|
package/android/build.gradle
CHANGED
|
@@ -1,20 +1,32 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
def useLegacyExpoModulesCorePlugin = {
|
|
4
|
+
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
5
|
+
apply from: expoModulesCorePlugin
|
|
6
|
+
applyKotlinExpoModulesCorePlugin()
|
|
7
|
+
useCoreDependencies()
|
|
8
|
+
useDefaultAndroidSdkVersions()
|
|
9
|
+
useExpoPublishing()
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
try {
|
|
13
|
+
apply plugin: 'expo-module-gradle-plugin'
|
|
14
|
+
} catch (e) {
|
|
15
|
+
if (!e instanceof UnknownPluginException) {
|
|
16
|
+
throw e
|
|
17
|
+
}
|
|
5
18
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
useExpoPublishing()
|
|
19
|
+
useLegacyExpoModulesCorePlugin()
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
group = 'host.exp.exponent'
|
|
23
|
+
version = '15.0.1'
|
|
12
24
|
|
|
13
25
|
android {
|
|
14
26
|
namespace "expo.modules.localauthentication"
|
|
15
27
|
defaultConfig {
|
|
16
28
|
versionCode 30
|
|
17
|
-
versionName "15.0.
|
|
29
|
+
versionName "15.0.1"
|
|
18
30
|
}
|
|
19
31
|
}
|
|
20
32
|
|
package/expo-module.config.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-local-authentication",
|
|
3
|
-
"version": "15.0.3-canary-
|
|
3
|
+
"version": "15.0.3-canary-20250207-8bc5146",
|
|
4
4
|
"description": "Provides an API for FaceID and TouchID (iOS) or the Fingerprint API (Android) to authenticate the user with a face or fingerprint scan.",
|
|
5
5
|
"main": "build/LocalAuthentication.js",
|
|
6
6
|
"types": "build/LocalAuthentication.d.ts",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"invariant": "^2.2.4"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"expo-module-scripts": "4.0.4-canary-
|
|
44
|
+
"expo-module-scripts": "4.0.4-canary-20250207-8bc5146"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"expo": "53.0.0-canary-
|
|
47
|
+
"expo": "53.0.0-canary-20250207-8bc5146"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "8bc5146852ccd7033138bac9ef8d3c41ae85a211"
|
|
50
50
|
}
|