feat(android): fetch thumbnail image from any webpage link

This commit is contained in:
Tom (plebeius.eth)
2024-10-15 17:39:02 +02:00
parent 19fe788fc7
commit 6f8a6e38d4
10 changed files with 25 additions and 41 deletions
-1
View File
@@ -10,7 +10,6 @@ android {
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
dependencies {
implementation project(':capacitor-app')
implementation project(':capacitor-device')
}
@@ -4,8 +4,8 @@
"webDir": "build",
"bundledWebRuntime": false,
"plugins": {
"Device": {
"lazyLoad": true
"CapacitorHttp": {
"enabled": true
}
}
}
@@ -2,9 +2,5 @@
{
"pkg": "@capacitor/app",
"classpath": "com.capacitorjs.plugins.app.AppPlugin"
},
{
"pkg": "@capacitor/device",
"classpath": "com.capacitorjs.plugins.device.DevicePlugin"
}
]
-3
View File
@@ -4,6 +4,3 @@ project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/
include ':capacitor-app'
project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android')
include ':capacitor-device'
project(':capacitor-device').projectDir = new File('../node_modules/@capacitor/device/android')