build.gradle 2.4 KB

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