diff options
Diffstat (limited to 'app/build.gradle')
| -rw-r--r-- | app/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index 3c73d2e..17768b0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -19,7 +19,7 @@ android { targetSdk 35 versionCode 5 versionName '0.2.0' - // Ship only the ABIs we build native libs for. + // Ship only the ABIs the native build scripts produce (ABIS in versions). ndk { abiFilters 'arm64-v8a', 'x86_64' } } @@ -69,8 +69,8 @@ android { buildConfig true } - // Native executables ship as lib*.so and must be extracted so we can exec - // them from nativeLibraryDir (useLegacyPackaging => extractNativeLibs=true). + // Native executables ship as lib*.so and must be extracted to be exec'd from + // nativeLibraryDir (useLegacyPackaging => extractNativeLibs=true). packaging { jniLibs { useLegacyPackaging true |