react-native-zolozkit 0.1.13 → 0.1.14

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/android/.project CHANGED
@@ -5,11 +5,6 @@
5
5
  <projects>
6
6
  </projects>
7
7
  <buildSpec>
8
- <buildCommand>
9
- <name>org.eclipse.jdt.core.javabuilder</name>
10
- <arguments>
11
- </arguments>
12
- </buildCommand>
13
8
  <buildCommand>
14
9
  <name>org.eclipse.buildship.core.gradleprojectbuilder</name>
15
10
  <arguments>
@@ -17,7 +12,6 @@
17
12
  </buildCommand>
18
13
  </buildSpec>
19
14
  <natures>
20
- <nature>org.eclipse.jdt.core.javanature</nature>
21
15
  <nature>org.eclipse.buildship.core.gradleprojectnature</nature>
22
16
  </natures>
23
17
  <filteredResources>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-zolozkit",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "zolozkit for react native",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -15,6 +15,6 @@ Pod::Spec.new do |s|
15
15
 
16
16
  s.source_files = "ios/**/*.{h,m,mm}"
17
17
 
18
- s.dependency "zolozkit", "~>1.2"
18
+ s.dependency "zolozkit", ">1.2"
19
19
  s.dependency "React-Core"
20
20
  end
@@ -1,78 +0,0 @@
1
- buildscript {
2
- if (project == rootProject) {
3
- repositories {
4
- google()
5
- mavenCentral()
6
- }
7
-
8
- dependencies {
9
- classpath 'com.android.tools.build:gradle:3.5.3'
10
- }
11
- }
12
- }
13
-
14
- apply plugin: 'com.android.library'
15
-
16
- def safeExtGet(prop, fallback) {
17
- def a = rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
18
-
19
- if (a instanceof String && !a.startsWith("2")) {
20
- project.logger.error("this version of plugin only support zoloz sdk version of 2.+")
21
- }
22
-
23
- return a
24
- }
25
-
26
- android {
27
- if (project.android.hasProperty("namespace")) {
28
- namespace "com.zoloz.react"
29
- }
30
-
31
- compileSdkVersion safeExtGet('Zolozkit_compileSdkVersion', 35)
32
- defaultConfig {
33
- minSdkVersion safeExtGet('Zolozkit_minSdkVersion', 16)
34
- targetSdkVersion safeExtGet('Zolozkit_targetSdkVersion', 35)
35
- versionCode 1
36
- versionName "1.0"
37
-
38
- }
39
-
40
- buildTypes {
41
- release {
42
- minifyEnabled false
43
- }
44
- }
45
- lintOptions {
46
- disable 'GradleCompatible'
47
- }
48
- compileOptions {
49
- sourceCompatibility JavaVersion.VERSION_1_8
50
- targetCompatibility JavaVersion.VERSION_1_8
51
- }
52
- }
53
-
54
- repositories {
55
- mavenLocal()
56
- maven {
57
- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
58
- url("$rootDir/../node_modules/react-native/android")
59
- }
60
- google()
61
- mavenCentral()
62
- }
63
-
64
- dependencies {
65
- //noinspection GradleDynamicVersion
66
- implementation "com.facebook.react:react-native:+" // From node_modules
67
- // zoloz library
68
- implementation "com.zoloz.android.build:zolozcore:${safeExtGet('Zolozkit_zolozVersion', '2.+')}"
69
- implementation "com.zoloz.android.build:doc:${safeExtGet('Zolozkit_zolozVersion', '2.+')}"
70
- implementation "com.zoloz.android.build:face:${safeExtGet('Zolozkit_zolozVersion', '2.+')}"
71
- implementation "com.zoloz.android.build:xnn:${safeExtGet('Zolozkit_zolozVersion', '2.+')}"
72
- implementation "com.zoloz.android.build:faceguard:${safeExtGet('Zolozkit_zolozVersion', '2.+')}"
73
- implementation "com.zoloz.android.build:apsecurity:${safeExtGet('Zolozkit_zolozVersion', '2.+')}"
74
- implementation 'com.squareup.okio:okio:1.17.4@jar'
75
- implementation 'com.alibaba:fastjson:1.2.83'
76
- implementation 'com.airbnb.android:lottie:2.7.0'
77
-
78
- }
@@ -1,2 +0,0 @@
1
- <manifest xmlns:android="http://schemas.android.com/apk/res/android">
2
- </manifest>