expo-network-addons 0.7.2-canary-20250131-5c4e588 → 0.7.2

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.
@@ -1,32 +1,20 @@
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
- }
3
+ group = 'expo.modules.networkaddons'
4
+ version = '0.7.2'
21
5
 
22
- group = 'host.exp.exponent'
23
- version = '0.7.0'
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()
24
12
 
25
13
  android {
26
14
  namespace "expo.modules.networkaddons"
27
15
  defaultConfig {
28
16
  versionCode 1
29
- versionName "0.7.0"
17
+ versionName "0.7.2"
30
18
  consumerProguardFiles("proguard-rules.pro")
31
19
  }
32
20
  }
@@ -1,7 +1,7 @@
1
1
  import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
2
 
3
3
  plugins {
4
- kotlin("jvm") version "1.9.24"
4
+ kotlin("jvm") version "1.9.25"
5
5
  id("java-gradle-plugin")
6
6
  }
7
7
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-network-addons",
3
3
  "title": "Expo Networking Addons",
4
- "version": "0.7.2-canary-20250131-5c4e588",
4
+ "version": "0.7.2",
5
5
  "description": "Expo module that provides extra functionalities for networking",
6
6
  "main": "build/index.js",
7
7
  "types": "build/index.d.ts",
@@ -34,9 +34,10 @@
34
34
  "license": "MIT",
35
35
  "dependencies": {},
36
36
  "devDependencies": {
37
- "expo-module-scripts": "4.0.4-canary-20250131-5c4e588"
37
+ "expo-module-scripts": "^4.0.3"
38
38
  },
39
39
  "peerDependencies": {
40
- "expo": "53.0.0-canary-20250131-5c4e588"
41
- }
40
+ "expo": "*"
41
+ },
42
+ "gitHead": "9442f00874e0cd738030abae80e5bdef184a2581"
42
43
  }