No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. apply plugin: 'com.android.application'
  2. apply from: 'setupSymbols.gradle'
  3. apply from: '../shared/keepUnitySymbols.gradle'
  4. dependencies {
  5. implementation project(':unityLibrary')
  6. }
  7. android {
  8. namespace "com.gcmstart.hskin"
  9. ndkPath "D:/6000.0.9f1/Editor/Data/PlaybackEngines/AndroidPlayer/NDK"
  10. ndkVersion "23.1.7779620"
  11. compileSdk 34
  12. buildToolsVersion = "34.0.0"
  13. compileOptions {
  14. sourceCompatibility JavaVersion.VERSION_17
  15. targetCompatibility JavaVersion.VERSION_17
  16. }
  17. defaultConfig {
  18. applicationId "com.gcmstart.hskin"
  19. versionName "1.7"
  20. minSdk 23
  21. targetSdk 34
  22. versionCode 2
  23. ndk {
  24. abiFilters "armeabi-v7a", "arm64-v8a"
  25. debugSymbolLevel "full"
  26. }
  27. }
  28. lint {
  29. abortOnError false
  30. }
  31. androidResources {
  32. ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
  33. noCompress = ['.unity3d', '.ress', '.resource', '.obb', '.bundle', '.unityexp'] + unityStreamingAssets.tokenize(', ')
  34. }
  35. packaging {
  36. jniLibs {
  37. useLegacyPackaging true
  38. }
  39. }
  40. signingConfigs {
  41. release {
  42. storeFile file('D:/HSKIN/user.keystore')
  43. storePassword '123456'
  44. keyAlias '123456'
  45. keyPassword '123456'
  46. }
  47. }
  48. buildTypes {
  49. debug {
  50. minifyEnabled = false
  51. proguardFiles getDefaultProguardFile('proguard-android.txt')
  52. jniDebuggable = true
  53. signingConfig signingConfigs.release
  54. }
  55. release {
  56. minifyEnabled = false
  57. proguardFiles getDefaultProguardFile('proguard-android.txt')
  58. signingConfig signingConfigs.release
  59. }
  60. }
  61. bundle {
  62. language {
  63. enableSplit = false
  64. }
  65. density {
  66. enableSplit = false
  67. }
  68. abi {
  69. enableSplit = true
  70. }
  71. texture {
  72. enableSplit = true
  73. }
  74. }
  75. }
  76. apply from: '..\\unityLibrary\\GoogleMobileAdsPlugin.androidlib\\packaging_options.gradle'