瀏覽代碼

[Android] Specify build tools version

Android Studio won't build the app otherwise. Since the gradle plugin 3.0 beta7,
the minimum supported build tools version is 26.0.2, so set it to that. Also
bump compileSdkVersion to 26 since they need to match (in the major number, that
is).

The target API is still 25. Android Oreo (26) brought some changes in overlay
permissions which I haven't figured out yet.
j8
Saúl Ibarra Corretgé 7 年之前
父節點
當前提交
a14cc60e30
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. 2
    1
      android/build.gradle

+ 2
- 1
android/build.gradle 查看文件

130
 }
130
 }
131
 
131
 
132
 ext {
132
 ext {
133
-    compileSdkVersion = 25
133
+    buildToolsVersion = "26.0.2"
134
+    compileSdkVersion = 26
134
     minSdkVersion    = 16
135
     minSdkVersion    = 16
135
     targetSdkVersion = 25
136
     targetSdkVersion = 25
136
 
137
 

Loading…
取消
儲存