@blueconic/blueconic-react-native 2.0.0 → 3.0.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.
Files changed (27) hide show
  1. package/BlueConicReactNative.podspec +23 -23
  2. package/CHANGELOG.md +99 -88
  3. package/LICENSE +3 -3
  4. package/README.md +484 -484
  5. package/android/build.gradle +40 -38
  6. package/android/gradle.properties +9 -0
  7. package/android/src/main/AndroidManifest.xml +4 -5
  8. package/android/src/main/java/com/blueconic/{blueconicreactnative → reactnative}/BlueConicClientModule.java +918 -870
  9. package/android/src/main/java/com/blueconic/{blueconicreactnative → reactnative}/BlueConicClientModuleHelper.java +17 -17
  10. package/android/src/main/java/com/blueconic/{blueconicreactnative → reactnative}/BlueConicClientPackage.java +29 -29
  11. package/android/src/main/java/com/blueconic/{blueconicreactnative → reactnative}/BlueConicInteraction.java +67 -68
  12. package/index.js +6 -6
  13. package/ios/BlueConicClient-Bridging-Header.h +6 -6
  14. package/ios/BlueConicClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -7
  15. package/ios/BlueConicClient.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  16. package/ios/BlueConicClientModule.m +79 -74
  17. package/ios/BlueConicClientModule.swift +545 -516
  18. package/ios/BlueConicInteraction.swift +63 -63
  19. package/package.json +35 -18
  20. package/.gitattributes +0 -1
  21. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  22. package/android/gradle/wrapper/gradle-wrapper.properties +0 -6
  23. package/android/gradlew +0 -172
  24. package/android/gradlew.bat +0 -84
  25. package/android/local.properties +0 -8
  26. package/ios/BlueConicClient.xcodeproj/project.xcworkspace/xcuserdata/youri.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  27. package/ios/BlueConicClient.xcodeproj/xcuserdata/youri.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
@@ -1,38 +1,40 @@
1
-
2
- buildscript {
3
- repositories {
4
- google()
5
- jcenter()
6
- }
7
-
8
- dependencies {
9
- classpath 'com.android.tools.build:gradle:7.2.1'
10
- }
11
- }
12
-
13
- apply plugin: 'com.android.library'
14
-
15
- android {
16
- compileSdkVersion 31
17
- buildToolsVersion "31.0.0"
18
-
19
- defaultConfig {
20
- minSdkVersion 21
21
- targetSdkVersion 31
22
- versionCode 1
23
- versionName "1.0"
24
- }
25
- lintOptions {
26
- abortOnError false
27
- }
28
- }
29
-
30
- repositories {
31
- mavenCentral()
32
- }
33
-
34
- dependencies {
35
- api project(':blueconic')
36
- implementation 'com.facebook.react:react-native:+'
37
- implementation 'com.google.code.gson:gson:1.5'
38
- }
1
+
2
+ buildscript {
3
+ repositories {
4
+ google()
5
+ mavenCentral()
6
+ }
7
+
8
+ dependencies {
9
+ classpath 'com.android.tools.build:gradle:7.4.2'
10
+ }
11
+ }
12
+
13
+ apply plugin: 'com.android.library'
14
+
15
+ android {
16
+ compileSdk 33
17
+
18
+ namespace 'com.blueconic.reactnative'
19
+ defaultConfig {
20
+ minSdkVersion 21
21
+ targetSdkVersion 33
22
+ versionCode 300
23
+ versionName "3.0.0"
24
+ buildConfigField 'String', 'PLATFORM_NAME', "\"React Native\""
25
+ buildConfigField 'String', 'PLATFORM_VERSION', "\"3.0.0\""
26
+ }
27
+ lintOptions {
28
+ abortOnError false
29
+ }
30
+ }
31
+
32
+ repositories {
33
+ google()
34
+ mavenCentral()
35
+ }
36
+
37
+ dependencies {
38
+ compileOnly 'com.facebook.react:react-android:+'
39
+ implementation 'com.blueconic:blueconic-android-lib:5.1.0'
40
+ }
@@ -0,0 +1,9 @@
1
+ org.gradle.jvmargs=-Xmx2048M
2
+ org.gradle.parallel=true
3
+ android.useAndroidX=true
4
+ android.enableJetifier=true
5
+ # Enables namespacing of each library's R class so that its R class includes only the
6
+ # resources declared in the library itself and none from the library's dependencies,
7
+ # thereby reducing the size of the R class for that library
8
+ android.nonTransitiveRClass=true
9
+ android.suppressUnsupportedCompileSdk=34
@@ -1,6 +1,5 @@
1
-
2
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
- package="com.blueconic.blueconicreactnative">
4
-
5
- </manifest>
1
+
2
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android">
3
+
4
+ </manifest>
6
5