react-native-flic2 0.3.18 → 0.3.21
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/
|
|
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
|
package/android/build.gradle
CHANGED
|
@@ -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
|
|
@@ -38,7 +35,6 @@ buildscript {
|
|
|
38
35
|
}
|
|
39
36
|
|
|
40
37
|
apply plugin: 'com.android.library'
|
|
41
|
-
apply plugin: 'maven'
|
|
42
38
|
|
|
43
39
|
android {
|
|
44
40
|
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
|
|
@@ -52,10 +48,6 @@ android {
|
|
|
52
48
|
lintOptions {
|
|
53
49
|
abortOnError false
|
|
54
50
|
}
|
|
55
|
-
compileOptions {
|
|
56
|
-
sourceCompatibility JavaVersion.VERSION_1_8
|
|
57
|
-
targetCompatibility JavaVersion.VERSION_1_8
|
|
58
|
-
}
|
|
59
51
|
}
|
|
60
52
|
|
|
61
53
|
repositories {
|
|
@@ -76,7 +68,7 @@ repositories {
|
|
|
76
68
|
dependencies {
|
|
77
69
|
//noinspection GradleDynamicVersion
|
|
78
70
|
implementation 'com.facebook.react:react-native:+' // From node_modules
|
|
79
|
-
implementation 'com.github.50ButtonsEach:flic2lib-android:1
|
|
71
|
+
implementation 'com.github.50ButtonsEach:flic2lib-android:1.1.0'
|
|
80
72
|
|
|
81
73
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
|
82
74
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.13'
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
<receiver
|
|
15
15
|
android:name="nl.xguard.flic2.service.Flic2Service$BootUpReceiver"
|
|
16
16
|
android:enabled="true"
|
|
17
|
-
android:permission="android.permission.RECEIVE_BOOT_COMPLETED"
|
|
17
|
+
android:permission="android.permission.RECEIVE_BOOT_COMPLETED"
|
|
18
|
+
android:exported="false">
|
|
18
19
|
<intent-filter>
|
|
19
20
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
20
21
|
<category android:name="android.intent.category.DEFAULT" />
|
|
@@ -23,7 +24,8 @@
|
|
|
23
24
|
|
|
24
25
|
<receiver
|
|
25
26
|
android:name="nl.xguard.flic2.service.Flic2Service$UpdateReceiver"
|
|
26
|
-
android:enabled="true"
|
|
27
|
+
android:enabled="true"
|
|
28
|
+
android:exported="false">
|
|
27
29
|
<intent-filter>
|
|
28
30
|
<action android:name="android.intent.action.PACKAGE_REPLACED" />
|
|
29
31
|
<data
|