build.gradle 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. plugins {
  2. id 'com.android.library'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. android {
  6. compileSdk 32
  7. defaultConfig {
  8. minSdk 21
  9. targetSdk 32
  10. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  11. consumerProguardFiles "consumer-rules.pro"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. compileOptions {
  20. sourceCompatibility JavaVersion.VERSION_1_8
  21. targetCompatibility JavaVersion.VERSION_1_8
  22. }
  23. kotlinOptions {
  24. jvmTarget = '1.8'
  25. }
  26. }
  27. dependencies {
  28. implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
  29. implementation project(':lib_ad_core')
  30. api "com.gromore.cn:gromore-sdk:3.6.0.2"
  31. implementation "com.gromore.cn:pangle-adapter:4.7.1.2.0"
  32. implementation 'androidx.core:core-ktx:1.8.0'
  33. implementation 'androidx.appcompat:appcompat:1.5.1'
  34. implementation 'com.google.android.material:material:1.6.1'
  35. testImplementation 'junit:junit:4.13.2'
  36. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  37. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  38. //mintegral
  39. implementation("com.mbridge.msdk.support:videojs:16.1.97")
  40. implementation("com.mbridge.msdk.support:mbjscommon:16.1.97")
  41. implementation("com.mbridge.msdk.support:playercommon:16.1.97")
  42. implementation("com.mbridge.msdk.support:reward:16.1.97")
  43. implementation("com.mbridge.msdk.support:videocommon:16.1.97")
  44. implementation("com.mbridge.msdk.support:chinasame:16.1.97")
  45. implementation("com.mbridge.msdk.support:interstitialvideo:16.1.97")
  46. implementation("com.mbridge.msdk.support:mbnative:16.1.97")
  47. implementation("com.mbridge.msdk.support:nativeex:16.1.97")
  48. implementation("com.mbridge.msdk.support:mbnativeadvanced:16.1.97")
  49. implementation("com.mbridge.msdk.support:interstitial:16.1.97")
  50. implementation("com.mbridge.msdk.support:mbbanner:16.1.97")
  51. implementation("com.mbridge.msdk.support:mbsplash:16.1.97")
  52. implementation("com.mbridge.msdk.support:mbbid:16.1.97")
  53. implementation("com.mbridge.msdk.support:newinterstitial:16.1.97")
  54. }