Geen omschrijving
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.

mainTemplate.gradle 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. apply plugin: 'com.android.library'
  2. **APPLY_PLUGINS**
  3. dependencies {
  4. implementation fileTree(dir: 'libs', include: ['*.jar'])
  5. // Android Resolver Dependencies Start
  6. implementation 'com.google.android.gms:play-services-ads:22.6.0' // Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml:7
  7. implementation 'com.google.android.gms:play-services-auth:16+' // Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml:10
  8. implementation 'com.google.android.gms:play-services-base:18.3.0' // Assets/Firebase/Editor/AppDependencies.xml:17
  9. implementation 'com.google.android.ump:user-messaging-platform:2.1.0' // Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml:7
  10. implementation 'com.google.firebase:firebase-analytics:21.5.0' // Assets/Firebase/Editor/AuthDependencies.xml:15
  11. implementation 'com.google.firebase:firebase-app-unity:11.7.0' // Assets/Firebase/Editor/AppDependencies.xml:22
  12. implementation 'com.google.firebase:firebase-auth:22.3.1' // Assets/Firebase/Editor/AuthDependencies.xml:13
  13. implementation 'com.google.firebase:firebase-auth-unity:11.7.0' // Assets/Firebase/Editor/AuthDependencies.xml:20
  14. implementation 'com.google.firebase:firebase-common:20.4.2' // Assets/Firebase/Editor/AppDependencies.xml:13
  15. implementation 'com.google.signin:google-signin-support:1.0.4' // Assets/GoogleSignIn/Editor/GoogleSignInSupportDependencies.xml:9
  16. // Android Resolver Dependencies End
  17. **DEPS**}
  18. // Android Resolver Exclusions Start
  19. android {
  20. packagingOptions {
  21. exclude ('/lib/armeabi/*' + '*')
  22. exclude ('/lib/mips/*' + '*')
  23. exclude ('/lib/mips64/*' + '*')
  24. exclude ('/lib/x86/*' + '*')
  25. exclude ('/lib/x86_64/*' + '*')
  26. }
  27. }
  28. // Android Resolver Exclusions End
  29. android {
  30. ndkPath "**NDKPATH**"
  31. compileSdkVersion **APIVERSION**
  32. buildToolsVersion '**BUILDTOOLS**'
  33. compileOptions {
  34. sourceCompatibility JavaVersion.VERSION_11
  35. targetCompatibility JavaVersion.VERSION_11
  36. }
  37. defaultConfig {
  38. minSdkVersion **MINSDKVERSION**
  39. targetSdkVersion **TARGETSDKVERSION**
  40. ndk {
  41. abiFilters **ABIFILTERS**
  42. }
  43. versionCode **VERSIONCODE**
  44. versionName '**VERSIONNAME**'
  45. consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
  46. }
  47. lintOptions {
  48. abortOnError false
  49. }
  50. aaptOptions {
  51. noCompress = **BUILTIN_NOCOMPRESS** + unityStreamingAssets.tokenize(', ')
  52. ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
  53. }**PACKAGING_OPTIONS**
  54. }
  55. **IL_CPP_BUILD_SETUP**
  56. **SOURCE_BUILD_SETUP**
  57. **EXTERNAL_SOURCES**