build.gradle 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. plugins {
  2. id 'com.android.library'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. def version = '1.0.1'
  6. def releaseTime() {
  7. return new Date().format("yyyy-MM-dd", TimeZone.getTimeZone("UTC"))
  8. }
  9. android {
  10. compileSdk = rootProject.ext.compileSdkVersion
  11. buildToolsVersion rootProject.ext.buildToolsVersion
  12. defaultConfig {
  13. minSdkVersion rootProject.ext.minSdkVersion
  14. targetSdkVersion rootProject.ext.targetSdkVersion
  15. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  16. consumerProguardFiles "consumer-rules.pro"
  17. }
  18. buildTypes {
  19. debug {
  20. libraryVariants.all { variant->
  21. variant.outputs.all { output->
  22. if (outputFile != null && outputFileName.endsWith('.aar')) {
  23. outputFileName = "ad_gromore_${version}_${releaseTime()}_debug.aar"
  24. }
  25. }
  26. }
  27. }
  28. release {
  29. minifyEnabled false
  30. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  31. libraryVariants.all { variant->
  32. variant.outputs.all { output->
  33. if (outputFile != null && outputFileName.endsWith('.aar')) {
  34. outputFileName = "ad_gromore_${version}_${releaseTime()}_release.aar"
  35. }
  36. }
  37. }
  38. }
  39. }
  40. compileOptions {
  41. sourceCompatibility JavaVersion.VERSION_1_8
  42. targetCompatibility JavaVersion.VERSION_1_8
  43. }
  44. kotlinOptions {
  45. jvmTarget = '1.8'
  46. }
  47. }
  48. dependencies {
  49. implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
  50. implementation project(':lib_ad_core')
  51. api "by.gm_mediation.com:gromore-sdk:4.0.0.1"
  52. api "by.gm_mediation.com:pangle-adapter:5.1.0.2.0"
  53. api 'com.pangle.cn:ads-sdk-pro:5.1.0.2'
  54. //mintegral
  55. api("com.mbridge.msdk.support:videojs:16.3.27")
  56. api("com.mbridge.msdk.support:mbjscommon:16.3.27")
  57. api("com.mbridge.msdk.support:playercommon:16.3.27")
  58. api("com.mbridge.msdk.support:reward:16.3.27")
  59. api("com.mbridge.msdk.support:videocommon:16.3.27")
  60. api("com.mbridge.msdk.support:chinasame:16.3.27")
  61. api("com.mbridge.msdk.support:interstitialvideo:16.3.27")
  62. api("com.mbridge.msdk.support:mbnative:16.3.27")
  63. api("com.mbridge.msdk.support:nativeex:16.3.27")
  64. api("com.mbridge.msdk.support:mbnativeadvanced:16.3.27")
  65. api("com.mbridge.msdk.support:interstitial:16.3.27")
  66. api("com.mbridge.msdk.support:mbbanner:16.3.27")
  67. api("com.mbridge.msdk.support:mbsplash:16.3.27")
  68. api("com.mbridge.msdk.support:mbbid:16.3.27")
  69. api("com.mbridge.msdk.support:newinterstitial:16.3.27")
  70. }