-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (35 loc) · 874 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id "com.android.library"
id 'kotlin-android'
id 'kotlin-parcelize'
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
java {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dependencies {
implementation 'androidx.annotation:annotation:1.5.0'
implementation "androidx.startup:startup-runtime:1.1.1"
}
android {
ext.kotlin_version = '1.7.20'
compileSdkVersion 33
externalNativeBuild {
cmake {
path file('lua-bridge/CMakeLists.txt')
version '3.22.1'
}
}
defaultConfig {
minSdkVersion 26
targetSdkVersion 33
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64', 'x86'
}
}
ndkVersion "25.1.8937393"
namespace 'org.hobby.luabridge'
}