expo-module-template 10.8.3 → 10.9.0

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/$.gitignore CHANGED
@@ -36,6 +36,8 @@ project.xcworkspace
36
36
  .settings
37
37
  local.properties
38
38
  android.iml
39
+ android/app/libs
40
+ android/keystores/debug.keystore
39
41
 
40
42
  # Cocoapods
41
43
  #
@@ -51,11 +53,5 @@ npm-debug.log
51
53
  yarn-debug.log
52
54
  yarn-error.log
53
55
 
54
- # BUCK
55
- buck-out/
56
- \.buckd/
57
- android/app/libs
58
- android/keystores/debug.keystore
59
-
60
56
  # Expo
61
57
  .expo/*
package/$package.json CHANGED
@@ -31,9 +31,8 @@
31
31
  "dependencies": {},
32
32
  "devDependencies": {
33
33
  "@types/react": "^18.0.25",
34
- "@types/react-native": "^0.70.6",
35
- "expo-module-scripts": "^3.0.4",
36
- "expo-modules-core": "^1.1.0"
34
+ "expo-module-scripts": "^3.0.9",
35
+ "expo-modules-core": "^1.5.0"
37
36
  },
38
37
  "peerDependencies": {
39
38
  "expo": "*",
@@ -22,7 +22,7 @@ buildscript {
22
22
  if (ext.has("kotlinVersion")) {
23
23
  ext.kotlinVersion()
24
24
  } else {
25
- ext.safeExtGet("kotlinVersion", "1.6.10")
25
+ ext.safeExtGet("kotlinVersion", "1.8.10")
26
26
  }
27
27
  }
28
28
 
@@ -35,19 +35,11 @@ buildscript {
35
35
  }
36
36
  }
37
37
 
38
- // Creating sources with comments
39
- task androidSourcesJar(type: Jar) {
40
- classifier = 'sources'
41
- from android.sourceSets.main.java.srcDirs
42
- }
43
-
44
38
  afterEvaluate {
45
39
  publishing {
46
40
  publications {
47
41
  release(MavenPublication) {
48
42
  from components.release
49
- // Add additional sourcesJar to artifacts
50
- artifact(androidSourcesJar)
51
43
  }
52
44
  }
53
45
  repositories {
@@ -59,7 +51,7 @@ afterEvaluate {
59
51
  }
60
52
 
61
53
  android {
62
- compileSdkVersion safeExtGet("compileSdkVersion", 31)
54
+ compileSdkVersion safeExtGet("compileSdkVersion", 33)
63
55
 
64
56
  compileOptions {
65
57
  sourceCompatibility JavaVersion.VERSION_11
@@ -70,15 +62,21 @@ android {
70
62
  jvmTarget = JavaVersion.VERSION_11.majorVersion
71
63
  }
72
64
 
65
+ namespace "<%- project.package %>"
73
66
  defaultConfig {
74
67
  minSdkVersion safeExtGet("minSdkVersion", 21)
75
- targetSdkVersion safeExtGet("targetSdkVersion", 31)
68
+ targetSdkVersion safeExtGet("targetSdkVersion", 33)
76
69
  versionCode 1
77
70
  versionName "<%- project.version %>"
78
71
  }
79
72
  lintOptions {
80
73
  abortOnError false
81
74
  }
75
+ publishing {
76
+ singleVariant("release") {
77
+ withSourcesJar()
78
+ }
79
+ }
82
80
  }
83
81
 
84
82
  repositories {
@@ -1,2 +1,2 @@
1
- <manifest package="<%- project.package %>">
1
+ <manifest>
2
2
  </manifest>
package/package.json CHANGED
@@ -1,9 +1,7 @@
1
1
  {
2
2
  "name": "expo-module-template",
3
- "version": "10.8.3",
3
+ "version": "10.9.0",
4
4
  "description": "ExpoModuleTemplate standalone module",
5
- "main": "build/ModuleTemplate.js",
6
- "types": "build/ModuleTemplate.d.ts",
7
5
  "scripts": {},
8
6
  "keywords": [
9
7
  "react-native",
@@ -20,9 +18,9 @@
20
18
  },
21
19
  "author": "650 Industries, Inc.",
22
20
  "license": "MIT",
23
- "homepage": "https://docs.expo.dev/versions/latest/sdk/module-template",
21
+ "homepage": "https://docs.expo.dev/modules",
24
22
  "dependencies": {},
25
23
  "devDependencies": {},
26
24
  "peerDependencies": {},
27
- "gitHead": "b9fc5249aa72d8845f41901e1c54eee787200bb3"
25
+ "gitHead": "fa5ecca8251986b9f197cc14074eec0ab6dfb6db"
28
26
  }