s4m33r789

build.gradle

Aug 16th, 2024 (edited)
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.00 KB | None | 0 0
  1. plugins {
  2. id 'com.android.application'
  3. id 'com.google.gms.google-services'
  4. id 'com.onesignal.androidsdk.onesignal-gradle-plugin'
  5. id 'org.jetbrains.kotlin.android'
  6. id 'com.google.firebase.crashlytics'
  7. }
  8.  
  9. https://t.me/@syndic4te
  10.  
  11. android {
  12. compileSdk 34
  13.  
  14. defaultConfig {
  15. applicationId "com.dooo.android"
  16. minSdkVersion 23
  17. targetSdkVersion 34
  18. multiDexEnabled true
  19. versionCode 291
  20. versionName "2.9.1"
  21.  
  22. renderscriptTargetApi 30
  23. renderscriptSupportModeEnabled true
  24.  
  25. javaCompileOptions {
  26. annotationProcessorOptions {
  27. arguments += [
  28. "room.schemaLocation":"$projectDir/schemas".toString(),
  29. "room.incremental":"true",
  30. "room.expandProjection":"true"]
  31. }
  32. }
  33. }
  34.  
  35. buildTypes {
  36. release {
  37. //debuggable true
  38. minifyEnabled false
  39. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  40. }
  41. }
  42. compileOptions {
  43. sourceCompatibility JavaVersion.VERSION_1_8
  44. targetCompatibility JavaVersion.VERSION_1_8
  45. }
  46. kotlinOptions {
  47. jvmTarget = JavaVersion.VERSION_1_8.toString()
  48. }
  49.  
  50. // apply plugin: 'applovin-quality-service'
  51. // applovin {
  52. // apiKey "iyD9r5Rs6DDXdFXHu9y5a-QBWubr4sH9ccnqdnwfO5nJLRha0y2XSuVtmDLAhMR6M-mIR5xcu61sdymtaeAXJ-" //Add Your applovin apiKey
  53. // }
  54. namespace 'com.dooo.android'
  55. packagingOptions {
  56. jniLibs {
  57. useLegacyPackaging true
  58. }
  59. }
  60. buildFeatures {
  61. buildConfig true
  62. }
  63. buildFeatures {
  64. viewBinding true
  65. }
  66. }
  67.  
  68. dependencies {
  69. implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
  70. implementation 'androidx.appcompat:appcompat:1.6.1'
  71. implementation 'com.google.android.material:material:1.9.0'
  72. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  73. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  74. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  75. implementation 'androidx.lifecycle:lifecycle-process:2.5.1'
  76. implementation 'androidx.core:core-ktx:1.13.1'
  77. implementation 'androidx.work:work-runtime:2.7.1'
  78. implementation "androidx.multidex:multidex:2.0.1"
  79. implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
  80. implementation "androidx.lifecycle:lifecycle-runtime:2.3.1"
  81. annotationProcessor "androidx.lifecycle:lifecycle-compiler:2.3.1"
  82. //Firebase BoM
  83. implementation platform('com.google.firebase:firebase-bom:26.4.0')
  84.  
  85. //Google Analytics
  86. implementation 'com.google.firebase:firebase-analytics'
  87.  
  88. //Firebase Crashlytics
  89. implementation 'com.google.firebase:firebase-crashlytics'
  90.  
  91. //Firebase Auth
  92. implementation 'com.google.firebase:firebase-auth:22.3.0'
  93. implementation 'com.google.android.gms:play-services-auth:20.7.0'
  94. implementation 'com.google.firebase:firebase-core:21.1.1'
  95.  
  96. //Remote Config
  97. implementation 'com.google.firebase:firebase-config-ktx'
  98. implementation 'com.google.firebase:firebase-analytics-ktx'
  99.  
  100. //OneSignal
  101. implementation 'com.onesignal:OneSignal:4.8.4'
  102.  
  103. //Toasty
  104. implementation 'com.github.GrenderG:Toasty:1.5.2'
  105.  
  106. //Volly
  107. implementation 'com.android.volley:volley:1.2.1'
  108.  
  109. //Gson
  110. implementation 'com.google.code.gson:gson:2.10.1'
  111.  
  112. //View Pager 2
  113. implementation "androidx.viewpager2:viewpager2:1.0.0"
  114.  
  115. //Rounded Image View
  116. implementation 'com.makeramen:roundedimageview:2.3.0'
  117.  
  118. //Glide
  119. implementation 'com.github.bumptech.glide:glide:4.13.2'
  120. annotationProcessor 'com.github.bumptech.glide:compiler:4.13.0'
  121.  
  122. //Lottie
  123. implementation "com.airbnb.android:lottie:6.1.0"
  124.  
  125. // Material dialog Library
  126. implementation 'dev.shreyaspatil.MaterialDialog:MaterialDialog:2.2.2'
  127.  
  128. // exo Player
  129. implementation 'com.google.android.exoplayer:exoplayer-core:2.18.3'
  130. implementation 'com.google.android.exoplayer:exoplayer-dash:2.18.3'
  131. implementation 'com.google.android.exoplayer:exoplayer-ui:2.18.3'
  132. implementation 'com.google.android.exoplayer:exoplayer-hls:2.18.3'
  133. implementation 'com.google.android.exoplayer:extension-rtmp:2.18.3'
  134. implementation 'com.google.android.exoplayer:extension-cast:2.18.3'
  135. implementation 'androidx.mediarouter:mediarouter:1.3.1'
  136. implementation 'com.google.android.gms:play-services-cast-framework:21.3.0'
  137. implementation 'com.google.android.exoplayer:exoplayer-smoothstreaming:2.18.3'
  138. implementation 'com.google.android.exoplayer:exoplayer-rtsp:2.18.3'
  139.  
  140.  
  141.  
  142. //Material Spinner
  143. implementation 'com.jaredrummler:material-spinner:1.3.1'
  144.  
  145.  
  146. //Admob
  147. implementation 'com.google.android.gms:play-services-ads:23.0.0'
  148. implementation project(':nativetemplates')
  149.  
  150. //StartApp
  151. implementation 'com.startapp:inapp-sdk:5.0.2'
  152.  
  153. //Shimmer
  154. implementation 'com.facebook.shimmer:shimmer:0.5.0'
  155.  
  156. //Downloader
  157. //implementation "androidx.tonyodev.fetch2:xfetch2:3.1.6"
  158. //implementation "androidx.tonyodev.fetch2okhttp:xfetch2okhttp:3.1.6"
  159.  
  160. //PersistentCookie
  161. implementation 'com.github.franmontiel:PersistentCookieJar:v1.0.1'
  162.  
  163.  
  164. //No Internet
  165. implementation 'org.imaginativeworld.oopsnointernet:oopsnointernet:2.0.0'
  166.  
  167. //Android SpinKit
  168. implementation 'com.github.ybq:Android-SpinKit:1.4.0'
  169.  
  170. //Tableview
  171. implementation 'com.github.evrencoskun:TableView:v0.8.9.4'
  172.  
  173. //HtmlSpanner
  174. implementation 'com.github.NightWhistler:HtmlSpanner:0.4'
  175.  
  176. //DataTable
  177. implementation 'com.github.salehyarahmadi:DataTable:v1.0.1'
  178.  
  179. //DoubleTapPlayerView
  180. implementation 'com.github.vkay94:DoubleTapPlayerView:1.0.4'
  181.  
  182. //BoxedVerticalSeekBar
  183. implementation 'com.github.alpbak:BoxedVerticalSeekBar:1.1.1'
  184.  
  185. //Room
  186. implementation "androidx.room:room-runtime:2.4.2"
  187. annotationProcessor "androidx.room:room-compiler:2.4.2"
  188.  
  189. //Facebook Ad Network
  190. implementation 'com.facebook.android:facebook-android-sdk:11.1.0'
  191. implementation 'androidx.annotation:annotation:1.5.0'
  192. implementation 'com.facebook.android:audience-network-sdk:6.12.0'
  193. implementation 'com.google.ads.mediation:facebook:6.12.0.0'
  194.  
  195. //adcolony
  196. implementation 'com.adcolony:sdk:4.8.0'
  197.  
  198. //Google Play services
  199. implementation 'com.google.android.gms:play-services-ads-identifier:18.1.0'
  200. implementation 'com.google.android.gms:play-services-location:21.3.0'
  201.  
  202. //Flow Layout
  203. implementation 'com.nex3z:flow-layout:1.3.3'
  204.  
  205. //Flexbox
  206. implementation 'com.google.android.flexbox:flexbox:3.0.0'
  207.  
  208. //Snowfall
  209. implementation 'com.github.jetradarmobile:android-snowfall:1.2.1'
  210.  
  211. //Themed-toggle-button-group
  212. implementation 'nl.bryanderidder:themed-toggle-button-group:1.4.0'
  213.  
  214. //Razorpay
  215. implementation "com.razorpay:razorpay-java:1.4.6"
  216. implementation 'com.razorpay:checkout:1.6.39'
  217.  
  218. //rxjava2
  219. implementation "io.reactivex.rxjava2:rxandroid:2.1.1"
  220.  
  221. //JWT
  222. implementation 'com.auth0:java-jwt:4.0.0'
  223.  
  224. //Applovin
  225. implementation 'com.applovin:applovin-sdk:+'
  226.  
  227. //Paypal
  228. implementation "com.paypal.android:paypal-web-payments:1.5.1-SNAPSHOT"
  229.  
  230. //Google Play Update
  231. implementation 'com.google.android.play:app-update:2.1.0'
  232.  
  233. implementation 'com.github.amitshekhariitbhu.Fast-Android-Networking:android-networking:1.0.4'
  234. implementation 'org.jsoup:jsoup:1.15.2'
  235. implementation 'org.apache.commons:commons-lang3:3.8.1'
  236. implementation 'org.conscrypt:conscrypt-android:2.5.2'
  237. implementation("com.squareup.okhttp3:okhttp:4.12.0")
  238. implementation("com.squareup.okhttp3:okhttp-urlconnection:4.4.1")
  239.  
  240. //Paytm
  241. implementation 'com.paytm.appinvokesdk:appinvokesdk:1.6.11'
  242. implementation 'com.paytm.pg:paytm-checksum:1.2.1'
  243.  
  244. //TorrentStream
  245. implementation 'com.github.TorrentStream:TorrentStream-Android:f2ea936857'
  246. implementation 'com.github.se-bastiaan:TorrentStreamServer-Android:f3a7e8f9e0'
  247.  
  248. //Pinlockview
  249. implementation 'com.github.aritraroy:PinLockView:2.1.0'
  250.  
  251. //Payu
  252. //implementation 'in.payu:payu-checkout-pro:1.8.2'
  253. //Flutterwave
  254. implementation 'com.github.flutterwave.rave-android:rave_android:2.1.39'
  255. // Stripe Android SDK
  256. //implementation 'com.stripe:stripe-android:20.19.2'
  257.  
  258. implementation project(':liquid_swipe')
  259.  
  260. //Shadowlayout
  261. implementation("net.orandja.shadowlayout:shadowlayout:1.0.1")
  262.  
  263. //Tamper Detector
  264. debugImplementation 'com.github.mukeshsolanki.Android-Tamper-Detector:tamperdetector-no-op:1.0.0'
  265. releaseImplementation 'com.github.mukeshsolanki.Android-Tamper-Detector:tamperdetector:1.0.0'
  266.  
  267. //Glide Transformations
  268. implementation 'jp.wasabeef:glide-transformations:4.3.0'
  269.  
  270. //UddoktaPay
  271. implementation 'com.github.uddoktapay:UddoktaPayAndroidSDK:ultra.2.0'
  272.  
  273. }
Add Comment
Please, Sign In to add comment