Guest User

app/build.gradle

a guest
Jul 20th, 2025
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. plugins {
  2. id 'com.android.application'
  3. id 'com.google.gms.google-services'
  4. }
  5.  
  6. android {
  7. namespace 'com.dream.voice'
  8. compileSdk 35
  9.  
  10. defaultConfig {
  11. applicationId "com.dream.voice"
  12. minSdk 24
  13. targetSdk 35
  14. versionCode 110
  15. versionName "1.1"
  16. multiDexEnabled true
  17. vectorDrawables.useSupportLibrary = true
  18. }
  19.  
  20. buildFeatures {
  21. viewBinding true
  22. }
  23.  
  24. buildTypes {
  25. release {
  26. minifyEnabled false
  27. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  28. }
  29. }
  30. compileOptions {
  31. sourceCompatibility JavaVersion.VERSION_11
  32. targetCompatibility JavaVersion.VERSION_11
  33. }
  34. }
  35.  
  36. dependencies {
  37. implementation 'androidx.core:core-ktx:1.16.0'
  38. implementation 'androidx.core:core:1.16.0'
  39. implementation 'androidx.appcompat:appcompat:1.7.1'
  40. implementation 'com.google.android.material:material:1.12.0'
  41. implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
  42. implementation 'androidx.vectordrawable:vectordrawable:1.2.0'
  43. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  44. implementation 'com.google.android.play:app-update:2.1.0'
  45. implementation 'com.google.android.play:review:2.0.2'
  46. implementation 'com.google.android.gms:play-services-ads-identifier:18.2.0'
  47. implementation "com.android.billingclient:billing:8.0.0"
  48.  
  49. // firebase
  50. implementation platform('com.google.firebase:firebase-bom:33.16.0')
  51. implementation 'com.google.firebase:firebase-analytics'
  52. implementation 'com.google.firebase:firebase-config'
  53.  
  54. implementation 'com.facebook.shimmer:shimmer:0.5.0'
  55.  
  56. implementation 'androidx.room:room-runtime:2.7.2'
  57. annotationProcessor 'androidx.room:room-compiler:2.7.2'
  58. implementation 'com.google.code.gson:gson:2.10.1'
  59.  
  60. // AD NETWORKS OPTIONS :
  61. // 3.0.1-all = Uses Admob, Meta Audience Network, IronSource, Google Ad Manager, Unity Ads, Startapp, Applovin, Applovin Max, Wortise
  62. // 3.0.1-triple = Uses AdMob, Google Ad Manager, Meta Audience Network and Applovin
  63. // 3.0.1-simple = Uses AdMob, Google Ad Manager, Meta Audience Network
  64. // 3.0.1-ex-wortise = Uses all of ads exclude Wortise
  65. // 3.0.1-custom = Uses AdMob, Meta Audience Network, IronSource
  66. // 3.0.1-admob-only = Uses Admob Only
  67. // 3.0.1-none = Doesn't use any ads
  68. implementation 'com.github.dream-space:dreamspace-ads-sdk:3.0.1-custom'
  69.  
  70. }
Advertisement
Add Comment
Please, Sign In to add comment