Android In App Messaging Build Gradle Failing for SDK version #4423
Unanswered
bpfeiffer187
asked this question in
Q&A
Replies: 1 comment 7 replies
-
You appear to be on old versions. all the packages should be getting it dynamically |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Anyone else run into the issue with adding in app messaging becuase it tries to dynamically pull in SDK version.
project.ext {
set('react-native', [
versions: [
android : [
minSdk : jsonMinSdk,
targetSdk : jsonTargetSdk,
compileSdk: jsonCompileSdk,
// optional as gradle.buildTools comes with one by default
// overriding here though to match the version RN uses
buildTools: jsonBuildTools
],
i notice other packages specify the versions
project.ext {
set('react-native', [
versions: [
android : [
minSdk : 16,
targetSdk : 28,
compileSdk: "28.0.3"
// optional as gradle.buildTools comes with one by default
// overriding here though to match the version RN uses
buildTools: jsonBuildTools
],
Beta Was this translation helpful? Give feedback.
All reactions