expo-intent-launcher 12.1.0-canary-20241211-61c49bd → 12.1.0-canary-20250131-5c4e588
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 +3 -0
- package/android/build.gradle +19 -7
- package/expo-module.config.json +0 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
|
|
14
14
|
### 💡 Others
|
|
15
15
|
|
|
16
|
+
- [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
|
|
17
|
+
- [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))
|
|
18
|
+
|
|
16
19
|
## 12.0.1 — 2024-10-22
|
|
17
20
|
|
|
18
21
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -1,15 +1,27 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
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
|
+
}
|
|
18
|
+
|
|
19
|
+
useLegacyExpoModulesCorePlugin()
|
|
20
|
+
}
|
|
21
|
+
|
|
3
22
|
group = 'host.exp.exponent'
|
|
4
23
|
version = '12.0.1'
|
|
5
24
|
|
|
6
|
-
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
|
-
apply from: expoModulesCorePlugin
|
|
8
|
-
applyKotlinExpoModulesCorePlugin()
|
|
9
|
-
useCoreDependencies()
|
|
10
|
-
useDefaultAndroidSdkVersions()
|
|
11
|
-
useExpoPublishing()
|
|
12
|
-
|
|
13
25
|
android {
|
|
14
26
|
namespace "expo.modules.intentlauncher"
|
|
15
27
|
defaultConfig {
|
package/expo-module.config.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-intent-launcher",
|
|
3
|
-
"version": "12.1.0-canary-
|
|
3
|
+
"version": "12.1.0-canary-20250131-5c4e588",
|
|
4
4
|
"description": "Provides a way to launch Android intents, e.g. opening a specific activity.",
|
|
5
5
|
"main": "build/IntentLauncher.js",
|
|
6
6
|
"types": "build/IntentLauncher.d.ts",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/intent-launcher/",
|
|
35
35
|
"dependencies": {},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"expo-module-scripts": "4.0.
|
|
37
|
+
"expo-module-scripts": "4.0.4-canary-20250131-5c4e588"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"expo": "53.0.0-canary-
|
|
40
|
+
"expo": "53.0.0-canary-20250131-5c4e588"
|
|
41
41
|
}
|
|
42
42
|
}
|