capacitor-sora-editor 1.0.6 → 1.0.7

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.
@@ -53,6 +53,7 @@ android {
53
53
  repositories {
54
54
  google()
55
55
  mavenCentral()
56
+ maven { url 'https://jitpack.io' }
56
57
  }
57
58
 
58
59
  dependencies {
@@ -61,12 +62,14 @@ dependencies {
61
62
  implementation "androidx.appcompat:appcompat:1.7.0"
62
63
  implementation "androidx.core:core-ktx:1.15.0"
63
64
 
64
- // Correct Maven coordinates for Sora Editor
65
- // Correct Maven coordinates for Sora Editor
66
- // Use local Sora Editor project
67
- implementation project(':sora-editor')
68
- // Remove individual module dependencies if they are included in :sora-editor or if they also need to be local
69
- // implementation 'io.github.abc15018045126:language-textmate:0.24.4'
65
+ // Use remote Sora Editor dependency for distribution
66
+ implementation 'com.github.abc15018045126.sora-editor:editor:v0.0.2'
67
+
68
+ // Local Sora Editor project for local builds (commented for distribution)
69
+ // implementation project(':sora-editor')
70
+
71
+ // Fallback to JitPack if Maven Central is not updated yet
72
+
70
73
 
71
74
  // Compose
72
75
  def composeBom = platform('androidx.compose:compose-bom:2024.12.01')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-sora-editor",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "SoraEditor plugin for Capacitor",
5
5
  "main": "dist/plugin.js",
6
6
  "module": "dist/esm/index.js",