lemnisk-react-native 0.1.22 → 0.1.23

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.
@@ -2,7 +2,7 @@ buildscript {
2
2
  if (project == rootProject) {
3
3
  repositories {
4
4
  google()
5
- jcenter()
5
+ mavenCentral()
6
6
  maven { url 'https://developer.huawei.com/repo/' }
7
7
  }
8
8
 
@@ -50,24 +50,23 @@ android {
50
50
  }
51
51
 
52
52
  android.defaultConfig {
53
- buildConfigField "String", "REACT_NATIVE_SDK_VERSION", "\"0.1.22\""
53
+ buildConfigField "String", "REACT_NATIVE_SDK_VERSION", "\"0.1.23\""
54
54
  }
55
55
 
56
56
  repositories {
57
- mavenLocal()
58
57
  maven {
59
58
  // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
60
59
  url("$rootDir/../node_modules/react-native/android")
61
60
  }
62
61
  google()
63
- jcenter()
62
+ mavenCentral()
64
63
  maven { url 'https://developer.huawei.com/repo/' }
65
64
  }
66
65
 
67
66
  dependencies {
68
67
  //noinspection GradleDynamicVersion
69
68
  implementation "com.facebook.react:react-native:+" // From node_modules
70
- implementation 'co.lemnisk.app.android:AndroidSDK:1.1.56'
69
+ implementation 'co.lemnisk.app.android:AndroidSDK:1.1.58'
71
70
  implementation 'org.apache.commons:commons-text:1.11.0'
72
71
  //implementation(name:'AndroidSDK-release', ext:'aar')
73
72
  implementation group: 'joda-time', name: 'joda-time', version: '2.12.5'
@@ -87,7 +87,6 @@ public class LemniskSdkModule extends ReactContextBaseJavaModule {
87
87
  return NAME;
88
88
  }
89
89
 
90
- @ReactMethod
91
90
  private AttributeBuilder getAttributeBuilderFromMap(ReadableMap object) {
92
91
  try {
93
92
  JSONObject attr = new JSONObject(object.toString());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lemnisk-react-native",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "plugin to setup the lemnisk sdk on both android and ios platform",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",