Added React Native project structure with Android configuration, Tauri desktop app support, and build artifacts. Includes development tools, test configuration, and platform-specific resources. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
347 B
Groovy
7 lines
347 B
Groovy
pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") }
|
|
plugins { id("com.facebook.react.settings") }
|
|
extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() }
|
|
rootProject.name = 'MyReactNativeApp'
|
|
include ':app'
|
|
includeBuild('../node_modules/@react-native/gradle-plugin')
|