Browse Source

Update compileSdkVersion version (#3516)

when compileSdkVersion is 25, below error was occured in react native 0.56.0.
"No resource found that matches the given name: attr 'android:keyboardNavigationCluster'"
so i have to change compileSdkVersion to 26.
Please add this push on your repository.
Thanks
andrei0807 6 years ago
parent
commit
72ba3bd8f6
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      android/app/build.gradle

+ 1
- 1
android/app/build.gradle View File

2
 apply from: '../prepare-robolectric.gradle'
2
 apply from: '../prepare-robolectric.gradle'
3
 
3
 
4
 android {
4
 android {
5
-    compileSdkVersion 25
5
+    compileSdkVersion 26
6
     buildToolsVersion '26.0.2'
6
     buildToolsVersion '26.0.2'
7
 
7
 
8
     defaultConfig {
8
     defaultConfig {