react-native-flic2 0.3.17 → 0.3.20

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
@@ -20,4 +20,15 @@
20
20
  <nature>org.eclipse.jdt.core.javanature</nature>
21
21
  <nature>org.eclipse.buildship.core.gradleprojectnature</nature>
22
22
  </natures>
23
+ <filteredResources>
24
+ <filter>
25
+ <id>1659599870811</id>
26
+ <name></name>
27
+ <type>30</type>
28
+ <matcher>
29
+ <id>org.eclipse.core.resources.regexFilterMatcher</id>
30
+ <arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
31
+ </matcher>
32
+ </filter>
33
+ </filteredResources>
23
34
  </projectDescription>
@@ -5,7 +5,7 @@ connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
5
5
  connection.project.dir=
6
6
  eclipse.preferences.version=1
7
7
  gradle.user.home=
8
- java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_192.jdk/Contents/Home
8
+ java.home=/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home
9
9
  jvm.arguments=
10
10
  offline.mode=false
11
11
  override.workspace.settings=true
@@ -19,9 +19,6 @@ def safeExtGet(prop, fallback) {
19
19
  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
20
20
  }
21
21
 
22
- apply plugin: 'com.android.library'
23
- apply plugin: 'maven'
24
-
25
22
  buildscript {
26
23
  // The Android Gradle plugin is only required when opening the android folder stand-alone.
27
24
  // This avoids unnecessary downloads and potential conflicts when the library is included as a
@@ -30,7 +27,6 @@ buildscript {
30
27
  if (project == rootProject) {
31
28
  repositories {
32
29
  google()
33
- jcenter()
34
30
  }
35
31
  dependencies {
36
32
  classpath 'com.android.tools.build:gradle:3.4.1'
@@ -39,7 +35,6 @@ buildscript {
39
35
  }
40
36
 
41
37
  apply plugin: 'com.android.library'
42
- apply plugin: 'maven'
43
38
 
44
39
  android {
45
40
  compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
@@ -53,10 +48,6 @@ android {
53
48
  lintOptions {
54
49
  abortOnError false
55
50
  }
56
- compileOptions {
57
- sourceCompatibility JavaVersion.VERSION_1_8
58
- targetCompatibility JavaVersion.VERSION_1_8
59
- }
60
51
  }
61
52
 
62
53
  repositories {
@@ -70,14 +61,14 @@ repositories {
70
61
  // Android JSC is installed from npm
71
62
  url "$rootDir/../node_modules/jsc-android/dist"
72
63
  }
64
+ maven { url 'https://jitpack.io' }
73
65
  google()
74
- jcenter()
75
66
  }
76
67
 
77
68
  dependencies {
78
69
  //noinspection GradleDynamicVersion
79
70
  implementation 'com.facebook.react:react-native:+' // From node_modules
80
- implementation 'io.flic:flic2lib-android:1.1.0'
71
+ implementation 'com.github.50ButtonsEach:flic2lib-android:1.1.0'
81
72
 
82
73
  implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
83
74
  implementation 'io.reactivex.rxjava2:rxjava:2.2.13'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-flic2",
3
- "version": "0.3.17",
3
+ "version": "0.3.20",
4
4
  "description": "React Native Flic plugin made with the Flic2 SDK (unofficial)",
5
5
  "main": "index.js",
6
6
  "scripts": {},