You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							39 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							39 lines
						
					
					
						
							1.2 KiB
						
					
					
				| 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 = 'VDS Quiz' | |
| 
 | |
| expoAutolinking.useExpoVersionCatalog() | |
| 
 | |
| include ':app' | |
| includeBuild(expoAutolinking.reactNativeGradlePlugin)
 |