1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 29
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 29
- versionCode 1
- versionName "1.0"
- multiDexEnabled true
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles 'consumer-rules.pro'
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- //.so文件引用
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- }
- }
- }
- repositories {
- flatDir {
- dirs 'libs', '../libs'
- }
- }
- allprojects {
- repositories {
- maven { url uri('../../repo') }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.3.1'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'androidx.test:runner:1.2.0'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- //腾讯IM
- api 'com.tencent.imsdk:imsdk-plus:7.9.5680'
- api "com.tencent.liteav.tuikit:tuicore:latest.release"
- api 'com.tencent.liteav:LiteAVSDK_Professional:11.9.0.14445'
- //fastJson解析json
- api 'com.alibaba:fastjson:1.2.69'
- //EventBus
- api 'org.greenrobot:eventbus:3.2.0'
- }
|