Skip to content

Commit

Permalink
fix(Android): Fix RN 0.73 namespace requirement (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
gasolin authored Jul 9, 2024
1 parent e74c8bf commit d6f3135
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ android {
minSdkVersion safeExtGet('minSdkVersion', 16)
targetSdkVersion safeExtGet('targetSdkVersion', 34)
}

// Conditional for compatibility with AGP <4.2.
if (project.android.hasProperty("namespace")) {
namespace = "com.asterinet.react.bgactions"
}
}

dependencies {
Expand Down

0 comments on commit d6f3135

Please sign in to comment.