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.
 
 
 

88 lines
2.1 KiB

  1. // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
  2. buildscript {
  3. repositories {
  4. mavenCentral()
  5. google()
  6. jcenter()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.4.0'
  10. **BUILD_SCRIPT_DEPS**}
  11. }
  12. allprojects {
  13. repositories {
  14. mavenCentral()
  15. google()
  16. jcenter()
  17. flatDir {
  18. dirs 'libs'
  19. }
  20. }
  21. }
  22. apply plugin: 'com.android.application'
  23. **APPLY_PLUGINS**
  24. dependencies {
  25. implementation fileTree(dir: 'libs', include: ['*.jar'])
  26. implementation 'com.tencent.mm.opensdk:wechat-sdk-android:+'
  27. **DEPS**}
  28. android {
  29. compileSdkVersion **APIVERSION**
  30. buildToolsVersion '**BUILDTOOLS**'
  31. compileOptions {
  32. sourceCompatibility JavaVersion.VERSION_1_8
  33. targetCompatibility JavaVersion.VERSION_1_8
  34. }
  35. defaultConfig {
  36. minSdkVersion **MINSDKVERSION**
  37. targetSdkVersion **TARGETSDKVERSION**
  38. applicationId '**APPLICATIONID**'
  39. ndk {
  40. abiFilters **ABIFILTERS**
  41. }
  42. versionCode **VERSIONCODE**
  43. versionName '**VERSIONNAME**'
  44. }
  45. lintOptions {
  46. abortOnError false
  47. }
  48. aaptOptions {
  49. noCompress = ['.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**]
  50. }**SIGN**
  51. buildTypes {
  52. debug {
  53. minifyEnabled **MINIFY_DEBUG**
  54. useProguard **PROGUARD_DEBUG**
  55. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD**
  56. jniDebuggable true
  57. }
  58. release {
  59. minifyEnabled **MINIFY_RELEASE**
  60. useProguard **PROGUARD_RELEASE**
  61. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
  62. }
  63. }**PACKAGING_OPTIONS****SPLITS**
  64. **BUILT_APK_LOCATION**
  65. bundle {
  66. language {
  67. enableSplit = false
  68. }
  69. density {
  70. enableSplit = false
  71. }
  72. abi {
  73. enableSplit = true
  74. }
  75. }
  76. }**SPLITS_VERSION_CODE****REPOSITORIES****SOURCE_BUILD_SETUP**