Skip to content
New issue

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

Namespace in AndroidManifest no longer supported #451

Open
isitcrazythough opened this issue Jan 30, 2024 · 7 comments
Open

Namespace in AndroidManifest no longer supported #451

isitcrazythough opened this issue Jan 30, 2024 · 7 comments

Comments

@isitcrazythough
Copy link

Which platform(s) does your issue occur on?

Android

Please, provide the following version numbers that your issue occurs with:

  • React native: 0.73.2
  • Inappbrowser: 3.7.0
  • gradle distribution used: 8.3-all

Please, tell us how to recreate the issue in as much detail as possible.

Compiling react native android version is impossible due to the following error:

Setting the namespace via the package attribute in the source AndroidManifest.xml is no longer supported. Recommendation: remove package="com.proyecto26.inappbrowser" from the source AndroidManifest.xml.

Reproduce by having the specified react native and gradle versions and trying to run the app with the inappbrowser module. It seems that specifying the package in the android manifest instead of a build file is deprecated, so compiling apps with newer react native versions is impossible.

@isitcrazythough
Copy link
Author

Took a look at the code and it seems to be fixed in develop. Is there a reason why it's not published already, considering that the package did not receive an update for 2 years?

@isitcrazythough
Copy link
Author

Guess I'll leave it open until we get an update, considering it's quite critical.

@abramval
Copy link

abramval commented Feb 5, 2024

How can I get around this error while there are no fixes?

@isitcrazythough
Copy link
Author

I worked around this by forcing the correct namespace for all my dependencies by specifying this in android/build.gradle

subprojects {
    beforeEvaluate {
        project ->
            if (project.hasProperty("android")) {
                android {
                    def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
                    if (namespace == null && agpVersion >= 7) {
                        namespace project.group
                    }
                }
            }
    }
}

@rajdeepnanua-okta
Copy link

@jdnichollsc, could you publish a new release? I see that the fix for this has already been merged, and react-native 0.73 is unusable without the fix or a workaround.

@gabrielnascr
Copy link

any updates?

@danielyooo
Copy link

I do the namespace in the buil.gradle of the app. Just do:
namespace = "com.proyecto26.inappbrowser"
And remove the line package="com.proyecto26.inappbrowser" in the AndroidManifest

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants