build.gradle 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'kotlin-android'
  3. android {
  4. compileSdkVersion rootProject.ext.android.compileSdkVersion
  5. buildToolsVersion rootProject.ext.android.buildToolsVersion
  6. defaultConfig {
  7. minSdkVersion rootProject.ext.android.minSdkVersion
  8. targetSdkVersion rootProject.ext.android.targetSdkVersion
  9. versionCode rootProject.ext.android.versionCode
  10. versionName rootProject.ext.android.versionName
  11. manifestPlaceholders = rootProject.ext.manifestPlaceholders
  12. ndk {
  13. abiFilters "armeabi-v7a","arm64-v8a"
  14. }
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. }
  23. repositories {
  24. flatDir {
  25. dirs 'libs','../libs'
  26. }
  27. }
  28. dependencies {
  29. api fileTree(dir: 'libs', include: ['*.jar'])
  30. api fileTree(include: ['*.jar'], dir: 'libs')
  31. //短视频
  32. api project(':video')
  33. //极光 推送,IM
  34. //api project(':jpush')
  35. //直播
  36. api project(':live')
  37. api project(':mall')
  38. // implementation 'androidx.appcompat:appcompat:1.7.1'
  39. // implementation 'com.google.android.material:material:1.12.0'
  40. // implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
  41. // implementation 'androidx.appcompat:appcompat:1.7.1'
  42. // implementation 'com.google.android.material:material:1.12.0'
  43. // implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
  44. // implementation 'androidx.appcompat:appcompat:1.6.1'
  45. // implementation 'com.google.android.material:material:1.8.0'
  46. // implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  47. }