Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • liveModule
  • build.gradle
Find file
Normal viewHistoryPermalink
build.gradle 1.87 KB
Newer Older
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
apply plugin: 'com.android.library'

android {
    compileSdkVersion compile_sdk_version
    buildToolsVersion build_tools_version

    defaultConfig {
        minSdkVersion min_sdk_version
        targetSdkVersion target_sdk_version
        versionCode version_code
        versionName verson_name
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true

    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    buildTypes {
        release {
            minifyEnabled isReleaseMinify
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }


}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation fileTree(include: ['*.jar'], dir: 'libs/upload')
    implementation "com.android.support:appcompat-v7:27.1.1"
    implementation 'com.android.support:recyclerview-v7:27.1.1'
mReturn's avatar
横屏直播2.6.1
3730bc0c
 
mReturn committed 4 years ago
38 39
    api 'com.tencent.liteav:LiteAVSDK_Professional:latest.release'
//    api 'com.tencent.liteavsdk:LiteAVSDK_Smart:latest.release'
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
40 41 42 43 44
//  MLVB 需要依赖 okhttp 拦截器
    implementation 'com.squareup.okhttp3:logging-interceptor:3.8.1'
//  MLVB 需要使用 gson 进行 json 解析
    implementation 'com.google.code.gson:gson:2.3.1'
//  MLVB 需要依赖腾讯云 IM 服务
luofan's avatar
最新代码提交
a7a59a7f
 
luofan committed 2 years ago
45
//    api 'com.tencent.imsdk:imsdk:4.5.45'
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
46 47 48 49 50 51 52
//  弹幕功能需要依赖此库
    implementation 'com.github.ctiao:dfm:0.4.4'
//  Demo 依赖的图片加载库
    implementation 'com.github.bumptech.glide:glide:4.5.0'
    // 美颜面板
    implementation project(':beauty')
    implementation 'org.greenrobot:eventbus:3.1.1'
mReturn's avatar
直播调试
111203fe
 
mReturn committed 4 years ago
53
    implementation 'com.badoo.mobile:android-weak-handler:1.1'
luofan's avatar
286增加师傅转派功能
c189f36f
 
luofan committed 3 years ago
54
    implementation 'com.tbruyelle.rxpermissions2:rxpermissions:0.9.4@aar'
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
55 56 57 58 59 60



//    api project(':provider')

}