34 lines
816 B
Groovy
34 lines
816 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 29
|
||
|
ndkVersion '22.1.7171670'
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId 'com.example.wasm3'
|
||
|
minSdkVersion 23
|
||
|
targetSdkVersion 29
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),
|
||
|
'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
externalNativeBuild {
|
||
|
cmake {
|
||
|
version '3.10.2+'
|
||
|
path "src/main/cpp/CMakeLists.txt"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
||
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
||
|
}
|