|  | @@ -15,11 +15,11 @@ buildscript {
 | 
	
		
			
			| 15 | 15 |  }
 | 
	
		
			
			| 16 | 16 |  
 | 
	
		
			
			| 17 | 17 |  def getExtOrDefault(name) {
 | 
	
		
			
			| 18 |  | -    return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties['ReactNativeWebview_' + name]
 | 
	
		
			
			|  | 18 | +  return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties['ReactNativeWebview_' + name]
 | 
	
		
			
			| 19 | 19 |  }
 | 
	
		
			
			| 20 | 20 |  
 | 
	
		
			
			| 21 | 21 |  def getExtOrIntegerDefault(name) {
 | 
	
		
			
			| 22 |  | -    return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties['ReactNativeWebview_' + name]).toInteger()
 | 
	
		
			
			|  | 22 | +  return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties['ReactNativeWebview_' + name]).toInteger()
 | 
	
		
			
			| 23 | 23 |  }
 | 
	
		
			
			| 24 | 24 |  
 | 
	
		
			
			| 25 | 25 |  apply plugin: 'com.android.library'
 |