Skip to content

Commit

Permalink
Merge pull request #667 from linmic/rn-73-support
Browse files Browse the repository at this point in the history
RN 73 support for Android with AGP 8 required
  • Loading branch information
whitedogg13 authored Nov 15, 2023
2 parents 93fa7e0 + 707cad6 commit 323ef47
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion safeExtGet('compileSdkVersion', 31)

def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION

if (agpVersion.tokenize('.')[0].toInteger() >= 7) {
namespace "community.revteltech.nfc"
}

defaultConfig {
minSdkVersion safeExtGet('minSdkVersion', 16)
//noinspection OldTargetApi
Expand Down

0 comments on commit 323ef47

Please sign in to comment.