We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dca01db commit aa568c6Copy full SHA for aa568c6
android/build.gradle
@@ -23,9 +23,14 @@ def reactNativeArchitectures() {
23
apply plugin: "com.android.library"
24
apply plugin: "kotlin-android"
25
apply from: '../nitrogen/generated/android/rive+autolinking.gradle'
26
-
27
apply plugin: "com.facebook.react"
28
+react {
29
+ jsRootDir = file("../src/")
30
+ libraryName = "rive"
31
+ codegenJavaPackageName = "com.rive"
32
+}
33
+
34
def getExtOrIntegerDefault(name) {
35
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["Rive_" + name]).toInteger()
36
}
0 commit comments