Files
ndk-samples/hello-jni/app/build.gradle
2025-09-22 20:28:34 +00:00

35 lines
600 B
Groovy

plugins {
id "ndksamples.android.application"
id "ndksamples.android.kotlin"
}
android {
namespace 'com.example.hellojni'
defaultConfig {
applicationId 'com.example.hellojni'
versionCode 1
versionName "1.0"
}
externalNativeBuild {
cmake {
path "src/main/cpp/CMakeLists.txt"
}
}
buildFeatures {
viewBinding true
}
buildFeatures {
prefab true
}
}
dependencies {
implementation project(":base")
implementation libs.appcompat
implementation libs.androidx.constraintlayout
}