mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	 2520eed0a5
			
		
	
	
		2520eed0a5
		
			
		
	
	
	
	
		
			
			Add code and config for a minimal Android app, and instructions to build and run it. Improve Android build instructions in general. Add a tool subcommand to download the Gradle wrapper (with its binary blob). Android studio must be downloaded manually (due to the license).
		
			
				
	
	
		
			18 lines
		
	
	
		
			No EOL
		
	
	
		
			334 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			No EOL
		
	
	
		
			334 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
| pluginManagement {
 | |
|     repositories {
 | |
|         google()
 | |
|         mavenCentral()
 | |
|         gradlePluginPortal()
 | |
|     }
 | |
| }
 | |
| dependencyResolutionManagement {
 | |
|     repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
 | |
|     repositories {
 | |
|         google()
 | |
|         mavenCentral()
 | |
|     }
 | |
| }
 | |
| 
 | |
| rootProject.name = "Python testbed"
 | |
| include(":app")
 | |
|   |