build.gradle 892 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
  2. apply plugin: 'com.android.library'
  3. dependencies {
  4. implementation fileTree(dir: 'libs', include: ['*.jar'])
  5. }
  6. android {
  7. compileSdkVersion 28
  8. buildToolsVersion '28.0.3'
  9. compileOptions {
  10. sourceCompatibility JavaVersion.VERSION_1_8
  11. targetCompatibility JavaVersion.VERSION_1_8
  12. }
  13. defaultConfig {
  14. minSdkVersion 22
  15. targetSdkVersion 28
  16. ndk {
  17. abiFilters 'armeabi-v7a'
  18. }
  19. versionCode 1
  20. versionName '0.1'
  21. consumerProguardFiles 'proguard-unity.txt'
  22. }
  23. lintOptions {
  24. abortOnError false
  25. }
  26. aaptOptions {
  27. ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
  28. }
  29. packagingOptions {
  30. doNotStrip '*/armeabi-v7a/*.so'
  31. }
  32. }