build.gradle 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
  2. apply plugin: 'com.android.application'
  3. dependencies {
  4. implementation project(':unityLibrary')
  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 21
  15. targetSdkVersion 28
  16. applicationId 'me.k.kotlin.paoku.s1'
  17. ndk {
  18. abiFilters 'armeabi-v7a'
  19. }
  20. versionCode 1
  21. versionName '1.0'
  22. }
  23. aaptOptions {
  24. noCompress = ['.unity3d', '.ress', '.resource', '.obb']
  25. ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
  26. }
  27. signingConfigs {
  28. debug {
  29. storeFile file("ojia.keystore")
  30. storePassword "111111"
  31. keyAlias "ojia"
  32. keyPassword "111111"
  33. }
  34. release {
  35. storeFile file("ojia.keystore")
  36. storePassword "111111"
  37. keyAlias "ojia"
  38. keyPassword "111111"
  39. }
  40. }
  41. lintOptions {
  42. abortOnError false
  43. }
  44. buildTypes {
  45. debug {
  46. minifyEnabled false
  47. proguardFiles getDefaultProguardFile('proguard-android.txt')
  48. signingConfig signingConfigs.release
  49. jniDebuggable true
  50. }
  51. release {
  52. minifyEnabled false
  53. proguardFiles getDefaultProguardFile('proguard-android.txt')
  54. signingConfig signingConfigs.release
  55. }
  56. }
  57. packagingOptions {
  58. doNotStrip '*/armeabi-v7a/*.so'
  59. }
  60. bundle {
  61. language {
  62. enableSplit = false
  63. }
  64. density {
  65. enableSplit = false
  66. }
  67. abi {
  68. enableSplit = true
  69. }
  70. }
  71. }