|  | @@ -8,7 +8,7 @@ project.ext.react = [
 | 
	
		
			
			| 8 | 8 |  apply from: "../../../node_modules/react-native/react.gradle"
 | 
	
		
			
			| 9 | 9 |  
 | 
	
		
			
			| 10 | 10 |  android {
 | 
	
		
			
			| 11 |  | -    compileSdkVersion 25
 | 
	
		
			
			|  | 11 | +    compileSdkVersion 26
 | 
	
		
			
			| 12 | 12 |      buildToolsVersion "27.0.3"
 | 
	
		
			
			| 13 | 13 |  
 | 
	
		
			
			| 14 | 14 |      compileOptions {
 | 
	
	
		
			
			|  | @@ -46,10 +46,19 @@ android {
 | 
	
		
			
			| 46 | 46 |      }
 | 
	
		
			
			| 47 | 47 |  }
 | 
	
		
			
			| 48 | 48 |  
 | 
	
		
			
			|  | 49 | +configurations.all {
 | 
	
		
			
			|  | 50 | +    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
 | 
	
		
			
			|  | 51 | +        def requested = details.requested
 | 
	
		
			
			|  | 52 | +        if (requested.group == 'com.android.support') {
 | 
	
		
			
			|  | 53 | +            details.useVersion "26.1.0"
 | 
	
		
			
			|  | 54 | +        }
 | 
	
		
			
			|  | 55 | +    }
 | 
	
		
			
			|  | 56 | +}
 | 
	
		
			
			|  | 57 | +
 | 
	
		
			
			| 49 | 58 |  dependencies {
 | 
	
		
			
			| 50 | 59 |      implementation fileTree(dir: 'libs', include: ['*.jar'])
 | 
	
		
			
			| 51 |  | -    implementation 'com.android.support:design:25.4.0'
 | 
	
		
			
			| 52 |  | -    implementation "com.android.support:appcompat-v7:25.4.0"
 | 
	
		
			
			|  | 60 | +    implementation 'com.android.support:design:26.1.0'
 | 
	
		
			
			|  | 61 | +    implementation 'com.android.support:appcompat-v7:26.1.0'
 | 
	
		
			
			| 53 | 62 |  
 | 
	
		
			
			| 54 | 63 |      //noinspection GradleDynamicVersion
 | 
	
		
			
			| 55 | 64 |      implementation 'com.facebook.react:react-native:+'
 | 
	
	
		
			
			|  | @@ -57,6 +66,6 @@ dependencies {
 | 
	
		
			
			| 57 | 66 |  
 | 
	
		
			
			| 58 | 67 |      androidTestImplementation(project(':detox'))
 | 
	
		
			
			| 59 | 68 |      androidTestImplementation 'junit:junit:4.12'
 | 
	
		
			
			| 60 |  | -    androidTestImplementation 'com.android.support.test:runner:1.0.1'
 | 
	
		
			
			| 61 |  | -    androidTestImplementation 'com.android.support.test:rules:1.0.1'
 | 
	
		
			
			|  | 69 | +    androidTestImplementation 'com.android.support.test:runner:1.0.2'
 | 
	
		
			
			|  | 70 | +    androidTestImplementation 'com.android.support.test:rules:1.0.2'
 | 
	
		
			
			| 62 | 71 |  }
 |