Skip to content

Commit e14dd89

Browse files
committed
🔧 (build.gradle): add namespace configuration for Android project
Introduce the `namespace` configuration under the `android` block to specify the package name for the Android project. This change is necessary to ensure that the project is correctly identified and organized within the Android ecosystem, particularly when integrating with libraries like CodePush. It helps in maintaining a clear structure and avoiding potential conflicts with other packages.
1 parent 2f4fe8a commit e14dd89

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

‎android/build.gradle‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ buildscript {
1414
}
1515

1616
allprojects {
17+
android {
18+
namespace "com.microsoft.codepush.react"
19+
}
1720
repositories {
1821
mavenLocal()
1922
mavenCentral()

0 commit comments

Comments
 (0)