@blueconic/blueconic-react-native 1.3.1 → 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.
- package/BlueConicReactNative.podspec +23 -23
- package/CHANGELOG.md +99 -80
- package/LICENSE +3 -3
- package/README.md +484 -476
- package/android/build.gradle +40 -42
- package/android/gradle.properties +9 -0
- package/android/src/main/AndroidManifest.xml +4 -5
- package/android/src/main/java/com/blueconic/{blueconicreactnative → reactnative}/BlueConicClientModule.java +918 -870
- package/android/src/main/java/com/blueconic/{blueconicreactnative → reactnative}/BlueConicClientModuleHelper.java +17 -17
- package/android/src/main/java/com/blueconic/{blueconicreactnative → reactnative}/BlueConicClientPackage.java +29 -29
- package/android/src/main/java/com/blueconic/{blueconicreactnative → reactnative}/BlueConicInteraction.java +67 -68
- package/index.js +6 -6
- package/ios/BlueConicClient-Bridging-Header.h +6 -6
- package/ios/BlueConicClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -7
- package/ios/BlueConicClient.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
- package/ios/BlueConicClientModule.m +79 -74
- package/ios/BlueConicClientModule.swift +545 -516
- package/ios/BlueConicInteraction.swift +63 -63
- package/package.json +35 -18
- package/.gitattributes +0 -1
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +0 -6
- package/android/gradlew +0 -172
- package/android/gradlew.bat +0 -84
- package/android/local.properties +0 -8
- package/ios/BlueConicClient.xcodeproj/project.xcworkspace/xcuserdata/youri.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/BlueConicClient.xcodeproj/xcuserdata/youri.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
package/android/build.gradle
CHANGED
|
@@ -1,42 +1,40 @@
|
|
|
1
|
-
|
|
2
|
-
buildscript {
|
|
3
|
-
repositories {
|
|
4
|
-
google()
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
dependencies {
|
|
9
|
-
classpath 'com.android.tools.build:gradle:7.2
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
apply plugin: 'com.android.library'
|
|
14
|
-
|
|
15
|
-
android {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
defaultConfig {
|
|
20
|
-
minSdkVersion 21
|
|
21
|
-
targetSdkVersion
|
|
22
|
-
versionCode
|
|
23
|
-
versionName "
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
implementation 'com.google.code.gson:gson:1.5'
|
|
42
|
-
}
|
|
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
|