소스 검색

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 년 전
부모
커밋
72ba3bd8f6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      android/app/build.gradle

+ 1
- 1
android/app/build.gradle 파일 보기

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