Skip to content

Commit

Permalink
Merge pull request #314 from Alza-app/master
Browse files Browse the repository at this point in the history
fix: RN 73 compatibility
  • Loading branch information
RonRadtke authored Nov 16, 2023
2 parents b845ef0 + 9ab918c commit 06e91b2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ if (isNewArchitectureEnabled()) {
}

android {
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
if (agpVersion.tokenize('.')[0].toInteger() >= 7) {
namespace "com.ronradtke.rnblobutil"
}
compileSdkVersion safeExtGet('compileSdkVersion', 30)
buildToolsVersion safeExtGet('buildToolsVersion', '28.0.3')
defaultConfig {
Expand Down Expand Up @@ -161,4 +165,4 @@ afterEvaluate { project ->
}
}
}
}
}

0 comments on commit 06e91b2

Please sign in to comment.