react-native-acoustic-connect-beta 16.0.6 → 16.0.7

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.
Files changed (31) hide show
  1. package/Example/nativebase-v3-kitchensink/android/app/build.gradle +1 -1
  2. package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/generated/BasePackageList.java +21 -0
  3. package/Example/nativebase-v3-kitchensink/android/build.gradle +4 -4
  4. package/Example/nativebase-v3-kitchensink/android/settings.gradle +1 -4
  5. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/build-request.json +27 -0
  6. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/description.msgpack +0 -0
  7. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/manifest.json +1 -0
  8. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/target-graph.txt +1 -0
  9. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/task-store.msgpack +0 -0
  10. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/build-request.json +27 -0
  11. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/description.msgpack +0 -0
  12. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/manifest.json +1 -0
  13. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/target-graph.txt +1 -0
  14. package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/task-store.msgpack +0 -0
  15. package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +2008 -0
  16. package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +2448 -0
  17. package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpecJSI-generated.cpp +1523 -0
  18. package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpecJSI.h +5509 -0
  19. package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/React-Codegen.podspec.json +1 -0
  20. package/android/build.gradle +1 -1
  21. package/android/config.gradle +4 -4
  22. package/android/src/main/assets/ConnectAdvancedConfig.json +3 -0
  23. package/android/src/main/assets/TealeafBasicConfig.properties +26 -68
  24. package/android/src/main/assets/TealeafLayoutConfig.json +1 -26
  25. package/android/src/main/java/com/tl/uic/rncxa/RNCxaModule.java +127 -100
  26. package/android/src/main/java/com/tl/uic/rncxa/RNCxaPackage.java +7 -3
  27. package/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +0 -0
  28. package/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +0 -0
  29. package/ios/build/generated/ios/React-Codegen.podspec.json +1 -0
  30. package/latestChanges +0 -1
  31. package/package.json +1 -1
@@ -265,4 +265,4 @@ apply from: new File(["node", "--print", "require.resolve('@react-native-communi
265
265
  applyNativeModulesAppBuildGradle(project)
266
266
 
267
267
  //apply from: project(':react-native-acoustic-ea-tealeaf-beta').projectDir.getPath() + "/config.gradle"
268
- //apply from: project(':react-native-acoustic-connect-beta').projectDir.getPath() + "/config.gradle"
268
+ apply from: project(':react-native-acoustic-connect-beta').projectDir.getPath() + "/config.gradle"
@@ -0,0 +1,21 @@
1
+ package com.geekyants.kitchensinkappnativebase.generated;
2
+
3
+ /* import java.util.Arrays;
4
+ import java.util.List;
5
+ import org.unimodules.core.interfaces.Package;
6
+
7
+ public class BasePackageList {
8
+ public List<Package> getPackageList() {
9
+ return Arrays.<Package>asList(
10
+ new expo.modules.application.ApplicationPackage(),
11
+ new expo.modules.constants.ConstantsPackage(),
12
+ new expo.modules.errorrecovery.ErrorRecoveryPackage(),
13
+ new expo.modules.filesystem.FileSystemPackage(),
14
+ new expo.modules.font.FontLoaderPackage(),
15
+ new expo.modules.imageloader.ImageLoaderPackage(),
16
+ new expo.modules.lineargradient.LinearGradientPackage(),
17
+ new expo.modules.splashscreen.SplashScreenPackage(),
18
+ new expo.modules.updates.UpdatesPackage()
19
+ );
20
+ }
21
+ } */
@@ -5,8 +5,8 @@ buildscript {
5
5
  buildToolsVersion = findProperty('android.buildToolsVersion') ?: '33.0.0'
6
6
  minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '21')
7
7
 
8
- compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '33')
9
- targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '33')
8
+ compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '34')
9
+ targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34')
10
10
  kotlinVersion = findProperty('android.kotlinVersion') ?: '1.8.10'
11
11
  frescoVersion = findProperty('expo.frescoVersion') ?: '2.5.0'
12
12
  // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
@@ -36,7 +36,7 @@ allprojects {
36
36
  mavenCentral()
37
37
  maven { url 'https://www.jitpack.io' }
38
38
 
39
- // This is required for the Tealeaf module to use staging repo
40
- // maven { url "https://s01.oss.sonatype.org/content/groups/staging" }
39
+ // This is required for the Connect module to use staging repo
40
+ maven { url "https://s01.oss.sonatype.org/content/groups/staging" }
41
41
  }
42
42
  }
@@ -7,7 +7,4 @@ apply from: new File(["node", "--print", "require.resolve('@react-native-communi
7
7
  applyNativeModulesSettingsGradle(settings)
8
8
 
9
9
  include ':app'
10
- includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json')"].execute(null, rootDir).text.trim()).getParentFile())
11
-
12
- //includeBuild('../node_modules/react-native-gradle-plugin')
13
- // includeBuild('../node_modules/@react-native/gradle-plugin')
10
+ includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json')"].execute(null, rootDir).text.trim()).getParentFile())
@@ -0,0 +1,27 @@
1
+ {
2
+ "buildCommand" : {
3
+ "command" : "build",
4
+ "skipDependencies" : false,
5
+ "style" : "buildOnly"
6
+ },
7
+ "configuredTargets" : [
8
+
9
+ ],
10
+ "continueBuildingAfterErrors" : false,
11
+ "dependencyScope" : "workspace",
12
+ "enableIndexBuildArena" : false,
13
+ "hideShellScriptEnvironment" : false,
14
+ "parameters" : {
15
+ "action" : "build",
16
+ "overrides" : {
17
+
18
+ }
19
+ },
20
+ "qos" : "utility",
21
+ "schemeCommand" : "launch",
22
+ "showNonLoggedProgress" : true,
23
+ "useDryRun" : false,
24
+ "useImplicitDependencies" : false,
25
+ "useLegacyBuildLocations" : false,
26
+ "useParallelTargets" : true
27
+ }
@@ -0,0 +1 @@
1
+ {"client":{"name":"basic","version":0,"file-system":"device-agnostic","perform-ownership-analysis":"no"},"targets":{"":["<all>"]},"commands":{"<all>":{"tool":"phony","inputs":["<WorkspaceHeaderMapVFSFilesWritten>"],"outputs":["<all>"]},"P0:::Gate WorkspaceHeaderMapVFSFilesWritten":{"tool":"phony","inputs":[],"outputs":["<WorkspaceHeaderMapVFSFilesWritten>"]}}}
@@ -0,0 +1,27 @@
1
+ {
2
+ "buildCommand" : {
3
+ "command" : "build",
4
+ "skipDependencies" : false,
5
+ "style" : "buildOnly"
6
+ },
7
+ "configuredTargets" : [
8
+
9
+ ],
10
+ "continueBuildingAfterErrors" : false,
11
+ "dependencyScope" : "workspace",
12
+ "enableIndexBuildArena" : false,
13
+ "hideShellScriptEnvironment" : false,
14
+ "parameters" : {
15
+ "action" : "build",
16
+ "overrides" : {
17
+
18
+ }
19
+ },
20
+ "qos" : "utility",
21
+ "schemeCommand" : "launch",
22
+ "showNonLoggedProgress" : true,
23
+ "useDryRun" : false,
24
+ "useImplicitDependencies" : false,
25
+ "useLegacyBuildLocations" : false,
26
+ "useParallelTargets" : true
27
+ }
@@ -0,0 +1 @@
1
+ {"client":{"name":"basic","version":0,"file-system":"device-agnostic","perform-ownership-analysis":"no"},"targets":{"":["<all>"]},"commands":{"<all>":{"tool":"phony","inputs":["<WorkspaceHeaderMapVFSFilesWritten>"],"outputs":["<all>"]},"P0:::Gate WorkspaceHeaderMapVFSFilesWritten":{"tool":"phony","inputs":[],"outputs":["<WorkspaceHeaderMapVFSFilesWritten>"]}}}