Skip to content

Commit 7a1f07c

Browse files
committed
Use android API 24
1 parent 93a9872 commit 7a1f07c

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

common/nativeactivity/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ def ndkDir = properties.getProperty('ndk.dir')
66

77
model {
88
android {
9-
compileSdkVersion = "android-N"
10-
buildToolsVersion = "23.0.2"
9+
compileSdkVersion 24
10+
buildToolsVersion "24.0.0"
1111
defaultConfig.with {
1212
minSdkVersion.apiLevel = 9
1313
targetSdkVersion.apiLevel = 24

tutorial01_load_vulkan/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apply plugin: 'com.android.model.application'
22

33
model {
44
android {
5-
compileSdkVersion = "android-N"
6-
buildToolsVersion = "23.0.2"
5+
compileSdkVersion 24
6+
buildToolsVersion "24.0.0"
77

88
defaultConfig {
99
applicationId = "com.google.vulkan.tutorials.one"

tutorial02_prebuild_layers/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ def valLayerSrc = "${ndkDir}/sources/third_party/vulkan/src"
88

99
model {
1010
android {
11-
compileSdkVersion = "android-N"
12-
buildToolsVersion = "23.0.2"
11+
compileSdkVersion 24
12+
buildToolsVersion "24.0.0"
1313

1414
defaultConfig {
1515
applicationId = "com.vulkan.tutorials.two"

tutorial03_traceable_layers/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ def ndkDir = properties.getProperty('ndk.dir')
66

77
model {
88
android {
9-
compileSdkVersion = "android-N"
10-
buildToolsVersion = "23.0.2"
9+
compileSdkVersion 24
10+
buildToolsVersion "24.0.0"
1111

1212
defaultConfig {
1313
applicationId = "com.google.vulkan.tutorials.three"

tutorial04_first_window/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apply plugin: 'com.android.model.application'
22

33
model {
44
android {
5-
compileSdkVersion = "android-N"
6-
buildToolsVersion = "23.0.2"
5+
compileSdkVersion 24
6+
buildToolsVersion "24.0.0"
77

88
defaultConfig {
99
applicationId = "com.google.vulkan.tutorials.four"

tutorial05_triangle/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apply plugin: 'com.android.model.application'
22

33
model {
44
android {
5-
compileSdkVersion = "android-N"
6-
buildToolsVersion = "23.0.2"
5+
compileSdkVersion 24
6+
buildToolsVersion "24.0.0"
77

88
defaultConfig {
99
applicationId = "com.google.vulkan.tutorials.five"

0 commit comments

Comments
 (0)