We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch @capacitor-community/file-opener@1.0.4 for the project I'm working on.
@capacitor-community/file-opener@1.0.4
Please replace the package attribute in AndroidManifest.xml with the namespace attribute in build.gradle cause is required by gradle 8.
Here is the diff that solved my problem:
diff --git a/node_modules/@capacitor-community/file-opener/android/build.gradle b/node_modules/@capacitor-community/file-opener/android/build.gradle index 3de9898..6b91629 100644 --- a/node_modules/@capacitor-community/file-opener/android/build.gradle +++ b/node_modules/@capacitor-community/file-opener/android/build.gradle @@ -18,6 +18,7 @@ buildscript { apply plugin: 'com.android.library' android { + namespace "com.ryltsov.alex.plugins.file.opener" compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 32 defaultConfig { minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22 diff --git a/node_modules/@capacitor-community/file-opener/android/src/main/AndroidManifest.xml b/node_modules/@capacitor-community/file-opener/android/src/main/AndroidManifest.xml index a06bff2..3ff16af 100644 --- a/node_modules/@capacitor-community/file-opener/android/src/main/AndroidManifest.xml +++ b/node_modules/@capacitor-community/file-opener/android/src/main/AndroidManifest.xml @@ -1,5 +1,4 @@ -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="com.ryltsov.alex.plugins.file.opener"> +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <application> <provider
This issue body was partially generated by patch-package.
The text was updated successfully, but these errors were encountered:
The required changes have been included into the new release 1.0.5 - see https://github.com/capacitor-community/file-opener/blob/chore/release-1.0.5/CHANGELOG.md
Sorry, something went wrong.
ryaa
No branches or pull requests
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
@capacitor-community/file-opener@1.0.4
for the project I'm working on.Please replace the package attribute in AndroidManifest.xml with the namespace attribute in build.gradle cause is required by gradle 8.
Here is the diff that solved my problem:
This issue body was partially generated by patch-package.
The text was updated successfully, but these errors were encountered: