build.gradle 487 B

12345678910111213141516171819
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 30
  4. buildToolsVersion '30.0.3'
  5. defaultConfig {
  6. minSdkVersion 21
  7. targetSdkVersion 30
  8. versionCode 1
  9. versionName "1.0.0"
  10. externalNativeBuild.ndkBuild {
  11. abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
  12. arguments "-j${Runtime.getRuntime().availableProcessors()}"
  13. }
  14. }
  15. externalNativeBuild.ndkBuild.path "src/main/jni/Android.mk"
  16. }