The open source OpenXR runtime
1apply plugin: 'com.android.library'
2
3android {
4 compileSdkVersion 26
5 buildToolsVersion '28.0.3'
6
7 defaultConfig {
8 minSdkVersion 15
9 targetSdkVersion 26
10 }
11
12 buildTypes {
13 release {
14 minifyEnabled = false
15 proguardFiles getDefaultProguardFile('proguard-android.txt')
16 }
17 }
18
19 sourceSets {
20 main {
21 manifest.srcFile 'android/AndroidManifest.xml'
22 }
23 }
24
25 externalNativeBuild {
26 cmake {
27 path 'android/CMakeLists.txt'
28 }
29 }
30}