@magicred-1/react-native-lxmf 0.1.4 → 0.1.5
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/build.gradle +30 -0
- package/package.json +2 -2
- package/android/build.gradle.kts +0 -31
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
apply plugin: 'com.android.library'
|
|
2
|
+
apply plugin: 'expo-module-gradle-plugin'
|
|
3
|
+
|
|
4
|
+
android {
|
|
5
|
+
namespace "expo.modules.lxmf"
|
|
6
|
+
compileSdk 36
|
|
7
|
+
|
|
8
|
+
defaultConfig {
|
|
9
|
+
minSdk 24
|
|
10
|
+
versionCode 1
|
|
11
|
+
versionName "1.0"
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
compileOptions {
|
|
15
|
+
sourceCompatibility JavaVersion.VERSION_11
|
|
16
|
+
targetCompatibility JavaVersion.VERSION_11
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
kotlinOptions {
|
|
20
|
+
jvmTarget = "11"
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
sourceSets {
|
|
24
|
+
main.java.srcDirs += 'src/main/kotlin'
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
dependencies {
|
|
29
|
+
compileOnly project(':expo-modules-core')
|
|
30
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magicred-1/react-native-lxmf",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "LXMF Reticulum mesh networking for React Native + Expo",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"files": [
|
|
69
69
|
"build",
|
|
70
70
|
"ios",
|
|
71
|
-
"android/build.gradle
|
|
71
|
+
"android/build.gradle",
|
|
72
72
|
"android/src/main",
|
|
73
73
|
"LxmfReactNative.podspec",
|
|
74
74
|
"expo-module.config.json",
|
package/android/build.gradle.kts
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
plugins {
|
|
2
|
-
id("com.android.library")
|
|
3
|
-
id("expo-module-gradle-plugin")
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
android {
|
|
7
|
-
namespace = "expo.modules.lxmf"
|
|
8
|
-
compileSdk = 36
|
|
9
|
-
|
|
10
|
-
defaultConfig {
|
|
11
|
-
minSdk = 24
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
compileOptions {
|
|
15
|
-
sourceCompatibility = JavaVersion.VERSION_11
|
|
16
|
-
targetCompatibility = JavaVersion.VERSION_11
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
kotlinOptions {
|
|
20
|
-
jvmTarget = "11"
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
sourceSets {
|
|
24
|
-
getByName("main").java.srcDirs("src/main/kotlin")
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
dependencies {
|
|
29
|
-
compileOnly(project(":expo-modules-core"))
|
|
30
|
-
}
|
|
31
|
-
|