react-native-acoustic-connect-beta 16.0.5 → 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.
- package/Example/nativebase-v3-kitchensink/android/app/build.gradle +102 -81
- package/Example/nativebase-v3-kitchensink/android/app/src/debug/AndroidManifest.xml +1 -2
- package/Example/nativebase-v3-kitchensink/android/app/src/debug/java/com/geekyants/kitchensinkappnativebase/ReactNativeFlipper.java +10 -4
- package/Example/nativebase-v3-kitchensink/android/app/src/main/AndroidManifest.xml +3 -3
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/MainActivity.java +14 -12
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/MainApplication.java +41 -55
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/generated/BasePackageList.java +21 -0
- package/Example/nativebase-v3-kitchensink/android/build.gradle +15 -25
- package/Example/nativebase-v3-kitchensink/android/gradle.properties +20 -3
- package/Example/nativebase-v3-kitchensink/android/settings.gradle +1 -1
- package/Example/nativebase-v3-kitchensink/babel.config.js +7 -1
- package/Example/nativebase-v3-kitchensink/ios/.xcode.env +11 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/AppDelegate.h +2 -3
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/AppDelegate.m +10 -69
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/Contents.json +7 -116
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Info.plist +4 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcodeproj/project.pbxproj +47 -37
- package/Example/nativebase-v3-kitchensink/ios/Podfile +105 -53
- package/Example/nativebase-v3-kitchensink/ios/Podfile.properties.json +2 -1
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/build-request.json +27 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/description.msgpack +0 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/manifest.json +1 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/target-graph.txt +1 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/task-store.msgpack +0 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/build-request.json +27 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/description.msgpack +0 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/manifest.json +1 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/target-graph.txt +1 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/task-store.msgpack +0 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +2008 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +2448 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpecJSI-generated.cpp +1523 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpecJSI.h +5509 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/React-Codegen.podspec.json +1 -0
- package/Example/nativebase-v3-kitchensink/metro.config.js +12 -14
- package/Example/nativebase-v3-kitchensink/package.json +21 -18
- package/Example/nativebase-v3-kitchensink/src/components/RootComponent.tsx +3 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/NativeBaseProvider.tsx +2 -2
- package/GroovyUtils/psgrep.sh +1 -0
- package/Jenkinsfile +27 -25
- package/android/config.gradle +4 -4
- package/android/src/main/assets/ConnectAdvancedConfig.json +3 -0
- package/android/src/main/assets/TealeafBasicConfig.properties +26 -68
- package/android/src/main/assets/TealeafLayoutConfig.json +1 -26
- package/android/src/main/java/com/tl/uic/rncxa/RNCxaModule.java +127 -100
- package/android/src/main/java/com/tl/uic/rncxa/RNCxaPackage.java +7 -3
- package/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +0 -0
- package/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +0 -0
- package/ios/build/generated/ios/React-Codegen.podspec.json +1 -0
- package/latestChanges +0 -1
- package/package.json +1 -1
- package/Example/nativebase-v3-kitchensink/android/app/BUCK +0 -55
- package/Example/nativebase-v3-kitchensink/android/app/build_defs.bzl +0 -19
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/noop-file.swift +0 -4
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebase.xcodeproj/project.pbxproj +0 -543
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebase.xcodeproj/xcshareddata/xcschemes/KitchenSinkappnativebase.xcscheme +0 -100
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebase.xcworkspace/contents.xcworkspacedata +0 -13
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebaseDebugSDK.xcworkspace/contents.xcworkspacedata +0 -10
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebaseDebugSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/Podfile +0 -51
- package/Example/nativebase-v3-kitchensink/node/.expo/README.md +0 -17
- package/Example/nativebase-v3-kitchensink/node/.expo/settings.json +0 -8
- package/Example/nativebase-v3-kitchensink/yarn.lock +0 -13679
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
|
2
|
-
require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
|
|
3
|
-
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
4
|
-
|
|
5
|
-
workspace 'KitchenSinkappnativebase.xcworkspace'
|
|
6
|
-
project 'KitchenSinkappnativebase.xcodeproj'
|
|
7
|
-
project '../../../../iOS-SDK/iOSSrc/Tealeaf/Tealeaf.xcodeproj'
|
|
8
|
-
|
|
9
|
-
platform :ios, '11.0'
|
|
10
|
-
|
|
11
|
-
target 'KitchenSinkappnativebase' do
|
|
12
|
-
project 'KitchenSinkappnativebase.xcodeproj'
|
|
13
|
-
use_unimodules!
|
|
14
|
-
config = use_native_modules!
|
|
15
|
-
|
|
16
|
-
use_react_native!(:path => config["reactNativePath"])
|
|
17
|
-
|
|
18
|
-
# Uncomment the code below to enable Flipper.
|
|
19
|
-
#
|
|
20
|
-
# You should not install Flipper in CI environments when creating release
|
|
21
|
-
# builds, this will lead to significantly slower build times.
|
|
22
|
-
#
|
|
23
|
-
# Note that if you have use_frameworks! enabled, Flipper will not work.
|
|
24
|
-
#
|
|
25
|
-
# use_flipper!
|
|
26
|
-
# post_install do |installer|
|
|
27
|
-
# flipper_post_install(installer)
|
|
28
|
-
# end
|
|
29
|
-
end
|
|
30
|
-
|
|
31
|
-
target 'XCTealeafReactNative' do
|
|
32
|
-
project '../../../../iOS-SDK/iOSSrc/Tealeaf/Tealeaf.xcodeproj'
|
|
33
|
-
# use_frameworks! :linkage => :static
|
|
34
|
-
config = use_native_modules!
|
|
35
|
-
|
|
36
|
-
use_react_native!(
|
|
37
|
-
:path => config[:reactNativePath],
|
|
38
|
-
# to enable hermes on iOS, change `false` to `true` and then install pods
|
|
39
|
-
:hermes_enabled => false
|
|
40
|
-
)
|
|
41
|
-
|
|
42
|
-
# Enables Flipper.
|
|
43
|
-
#
|
|
44
|
-
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
|
45
|
-
# you should disable the next line.
|
|
46
|
-
# use_flipper!()
|
|
47
|
-
|
|
48
|
-
# post_install do |installer|
|
|
49
|
-
# react_native_post_install(installer)
|
|
50
|
-
# end
|
|
51
|
-
end
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
> Why do I have a folder named ".expo" in my project?
|
|
2
|
-
|
|
3
|
-
The ".expo" folder is created when an Expo project is started using "expo start" command.
|
|
4
|
-
|
|
5
|
-
> What does the "packager-info.json" file contain?
|
|
6
|
-
|
|
7
|
-
The "packager-info.json" file contains port numbers and process PIDs that are used to serve the application to the mobile device/simulator.
|
|
8
|
-
|
|
9
|
-
> What does the "settings.json" file contain?
|
|
10
|
-
|
|
11
|
-
The "settings.json" file contains the server configuration that is used to serve the application manifest.
|
|
12
|
-
|
|
13
|
-
> Should I commit the ".expo" folder?
|
|
14
|
-
|
|
15
|
-
No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine.
|
|
16
|
-
|
|
17
|
-
Upon project creation, the ".expo" folder is already added to your ".gitignore" file.
|