unimodules-app-loader 4.1.2 → 4.3.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/CHANGELOG.md CHANGED
@@ -10,6 +10,18 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 4.3.0 — 2023-09-04
14
+
15
+ ### 🎉 New features
16
+
17
+ - Added support for React Native 0.73. ([#24018](https://github.com/expo/expo/pull/24018) by [@kudo](https://github.com/kudo))
18
+
19
+ ## 4.2.0 — 2023-06-21
20
+
21
+ ### 🐛 Bug fixes
22
+
23
+ - Fixed Android build warnings for Gradle version 8. ([#22537](https://github.com/expo/expo/pull/22537), [#22609](https://github.com/expo/expo/pull/22609) by [@kudo](https://github.com/kudo))
24
+
13
25
  ## 4.1.2 — 2023-05-08
14
26
 
15
27
  _This version does not introduce any user-facing changes._
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '4.1.2'
6
+ version = '4.3.0'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -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 {
@@ -61,24 +53,33 @@ afterEvaluate {
61
53
  android {
62
54
  compileSdkVersion safeExtGet("compileSdkVersion", 33)
63
55
 
64
- compileOptions {
65
- sourceCompatibility JavaVersion.VERSION_11
66
- targetCompatibility JavaVersion.VERSION_11
67
- }
56
+ def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
57
+ if (agpVersion.tokenize('.')[0].toInteger() < 8) {
58
+ compileOptions {
59
+ sourceCompatibility JavaVersion.VERSION_11
60
+ targetCompatibility JavaVersion.VERSION_11
61
+ }
68
62
 
69
- kotlinOptions {
70
- jvmTarget = JavaVersion.VERSION_11.majorVersion
63
+ kotlinOptions {
64
+ jvmTarget = JavaVersion.VERSION_11.majorVersion
65
+ }
71
66
  }
72
67
 
68
+ namespace "org.unimodules.apploader"
73
69
  defaultConfig {
74
70
  minSdkVersion safeExtGet("minSdkVersion", 21)
75
71
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
76
72
  versionCode 8
77
- versionName '4.1.2'
73
+ versionName '4.3.0'
78
74
  }
79
75
  lintOptions {
80
76
  abortOnError false
81
77
  }
78
+ publishing {
79
+ singleVariant("release") {
80
+ withSourcesJar()
81
+ }
82
+ }
82
83
  }
83
84
 
84
85
  repositories {
@@ -1 +1,2 @@
1
- <manifest package="org.unimodules.apploader"></manifest>
1
+ <manifest>
2
+ </manifest>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unimodules-app-loader",
3
- "version": "4.1.2",
3
+ "version": "4.3.0",
4
4
  "description": "App loader for background applications",
5
5
  "keywords": [
6
6
  "react-native",
@@ -21,5 +21,5 @@
21
21
  "devDependencies": {
22
22
  "expo-module-scripts": "^3.0.0"
23
23
  },
24
- "gitHead": "4ba50c428c8369bb6b3a51a860d4898ad4ccbe78"
24
+ "gitHead": "79607a7325f47aa17c36d266100d09a4ff2cc544"
25
25
  }