achorein / expo-share-intent

🚀 Simple share intent in an Expo Native Module
MIT License
119 stars 10 forks source link

[Android] Warning causes by namespace "${group}" since 2.x.x version #68

Open TomCorvus opened 1 month ago

TomCorvus commented 1 month ago

Describe the bug A warning appears on pod install since 2.x.x version warn Invalid application's package name "${group}" in either 'AndroidManifest.xml' or 'build.gradle'. Read guidelines for setting the package name here: https://developer.android.com/studio/build/application-id

It seems to be caused by:

android {
  def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION

  namespace "${group}"
  defaultConfig {
    versionCode 1
    versionName "${version}"
  }
}

in build.gradle

I don't know why I see this during pod install btw.