We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e5daae commit e4ac2aeCopy full SHA for e4ac2ae
android/build.gradle
@@ -32,6 +32,15 @@ if (isNewArchitectureEnabled()) {
32
android {
33
compileSdkVersion getExtOrDefault('compileSdkVersion', 30)
34
35
+ // Used to override the NDK path/version on internal CI or by allowing
36
+ // users to customize the NDK path/version from their root project (e.g. for M1 support)
37
+ if (rootProject.hasProperty("ndkPath")) {
38
+ ndkPath rootProject.ext.ndkPath
39
+ }
40
+ if (rootProject.hasProperty("ndkVersion")) {
41
+ ndkVersion rootProject.ext.ndkVersion
42
43
+
44
defaultConfig {
45
minSdkVersion getExtOrDefault('minSdkVersion', 16)
46
targetSdkVersion getExtOrDefault('targetSdkVersion', 28)
0 commit comments