diff --git a/android/app/capacitor.build.gradle b/android/app/capacitor.build.gradle index d73deb7748..e954d8b0c6 100644 --- a/android/app/capacitor.build.gradle +++ b/android/app/capacitor.build.gradle @@ -10,7 +10,6 @@ android { apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle" dependencies { implementation project(':byteowls-capacitor-oauth2') - implementation project(':capacitor-community-http') implementation project(':capacitor-app') implementation project(':capacitor-device') implementation project(':capacitor-filesystem') diff --git a/android/app/src/main/assets/capacitor.plugins.json b/android/app/src/main/assets/capacitor.plugins.json index 3a228eac75..14d23c99eb 100644 --- a/android/app/src/main/assets/capacitor.plugins.json +++ b/android/app/src/main/assets/capacitor.plugins.json @@ -3,10 +3,6 @@ "pkg": "@byteowls/capacitor-oauth2", "classpath": "com.byteowls.capacitor.oauth2.OAuth2ClientPlugin" }, - { - "pkg": "@capacitor-community/http", - "classpath": "com.getcapacitor.plugin.http.Http" - }, { "pkg": "@capacitor/app", "classpath": "com.capacitorjs.plugins.app.AppPlugin" diff --git a/android/capacitor.settings.gradle b/android/capacitor.settings.gradle index 55f204d881..af21eaefe7 100644 --- a/android/capacitor.settings.gradle +++ b/android/capacitor.settings.gradle @@ -5,9 +5,6 @@ project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/ include ':byteowls-capacitor-oauth2' project(':byteowls-capacitor-oauth2').projectDir = new File('../node_modules/@byteowls/capacitor-oauth2/android') -include ':capacitor-community-http' -project(':capacitor-community-http').projectDir = new File('../node_modules/@capacitor-community/http/android') - include ':capacitor-app' project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android') diff --git a/ios/App/Podfile b/ios/App/Podfile index b5814bee51..779272ddcd 100644 --- a/ios/App/Podfile +++ b/ios/App/Podfile @@ -12,7 +12,6 @@ def capacitor_pods pod 'Capacitor', :path => '../../node_modules/@capacitor/ios' pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios' pod 'ByteowlsCapacitorOauth2', :path => '../../node_modules/@byteowls/capacitor-oauth2' - pod 'CapacitorCommunityHttp', :path => '../../node_modules/@capacitor-community/http' pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app' pod 'CapacitorDevice', :path => '../../node_modules/@capacitor/device' pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'