42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
pluginManagement {
 | 
						|
  def reactNativeGradlePlugin = new File(
 | 
						|
    providers.exec {
 | 
						|
      workingDir(rootDir)
 | 
						|
      commandLine("node", "--print", "require.resolve('@react-native/gradle-plugin/package.json', { paths: [require.resolve('react-native/package.json')] })")
 | 
						|
    }.standardOutput.asText.get().trim()
 | 
						|
  ).getParentFile().absolutePath
 | 
						|
  includeBuild(reactNativeGradlePlugin)
 | 
						|
  
 | 
						|
  def expoPluginsPath = new File(
 | 
						|
    providers.exec {
 | 
						|
      workingDir(rootDir)
 | 
						|
      commandLine("node", "--print", "require.resolve('expo-modules-autolinking/package.json', { paths: [require.resolve('expo/package.json')] })")
 | 
						|
    }.standardOutput.asText.get().trim(),
 | 
						|
    "../android/expo-gradle-plugin"
 | 
						|
  ).absolutePath
 | 
						|
  includeBuild(expoPluginsPath)
 | 
						|
}
 | 
						|
 | 
						|
plugins {
 | 
						|
  id("com.facebook.react.settings")
 | 
						|
  id("expo-autolinking-settings")
 | 
						|
}
 | 
						|
 | 
						|
extensions.configure(com.facebook.react.ReactSettingsExtension) { ex ->
 | 
						|
  if (System.getenv('EXPO_USE_COMMUNITY_AUTOLINKING') == '1') {
 | 
						|
    ex.autolinkLibrariesFromCommand()
 | 
						|
  } else {
 | 
						|
    ex.autolinkLibrariesFromCommand(expoAutolinking.rnConfigCommand)
 | 
						|
  }
 | 
						|
}
 | 
						|
expoAutolinking.useExpoModules()
 | 
						|
 | 
						|
rootProject.name = 'Assemblr'
 | 
						|
 | 
						|
expoAutolinking.useExpoVersionCatalog()
 | 
						|
 | 
						|
include ':app'
 | 
						|
includeBuild(expoAutolinking.reactNativeGradlePlugin)
 | 
						|
include ':react-native-tcp-socket'
 | 
						|
project(':react-native-tcp-socket').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-tcp-socket/android')
 |