| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
- android {
- compileSdkVersion rootProject.ext.android.compileSdkVersion
- buildToolsVersion rootProject.ext.android.buildToolsVersion
- defaultConfig {
- minSdkVersion rootProject.ext.android.minSdkVersion
- targetSdkVersion rootProject.ext.android.targetSdkVersion
- versionCode rootProject.ext.android.versionCode
- versionName rootProject.ext.android.versionName
- manifestPlaceholders = rootProject.ext.manifestPlaceholders
- ndk {
- abiFilters "armeabi-v7a","arm64-v8a"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- repositories {
- flatDir {
- dirs 'libs','../libs'
- }
- }
- dependencies {
- api fileTree(dir: 'libs', include: ['*.jar'])
- api fileTree(include: ['*.jar'], dir: 'libs')
- //短视频
- api project(':video')
- //极光 推送,IM
- //api project(':jpush')
- //直播
- api project(':live')
- api project(':mall')
- // implementation 'androidx.appcompat:appcompat:1.7.1'
- // implementation 'com.google.android.material:material:1.12.0'
- // implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
- // implementation 'androidx.appcompat:appcompat:1.7.1'
- // implementation 'com.google.android.material:material:1.12.0'
- // implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
- // implementation 'androidx.appcompat:appcompat:1.6.1'
- // implementation 'com.google.android.material:material:1.8.0'
- // implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- }
|