mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-30 22:34:02 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			645 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			645 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
| package fr.free.nrw.commons
 | |
| 
 | |
| /**
 | |
|  * Production variant related constants which is used in beta variant for some specific GET calls on
 | |
|  * production server where beta server does not work
 | |
|  */
 | |
| object BetaConstants {
 | |
|     /**
 | |
|      * Commons production URL which is used in beta for some specific GET calls on
 | |
|      * production server where beta server does not work
 | |
|      */
 | |
|     const val COMMONS_URL = "https://commons.wikimedia.org/"
 | |
| 
 | |
|     /**
 | |
|      * Commons production's depicts property which is used in beta for some specific GET calls on
 | |
|      * production server where beta server does not work
 | |
|      */
 | |
|     const val DEPICTS_PROPERTY = "P180"
 | |
| }
 | 
