| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- apply plugin: 'com.android.library'
- apply from: '../build_cust.gradle'
- android {
- compileSdkVersion 30
- buildToolsVersion "30.0.3"
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 30
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- manifestPlaceholders = [
- "YouYi_GameId": ro.youYiGameId,
- "YouYi_AppKey": ro.youYiAppKey
- ]
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- api fileTree(dir: "libs", include: ["*.jar"])
- // api fileTree(dir: 'libs', include: ['*.aar'])
- api project(":lebian")
- api 'com.aliyun.ams:alicloud-android-httpdns:2.0.2'
- implementation 'androidx.recyclerview:recyclerview:1.1.0'
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'com.github.bumptech.glide:glide:4.11.0'
- implementation 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+'
- implementation(name: 'ijkplayer-exo-release', ext: 'aar')
- implementation(name: 'ijkplayer-java-release', ext: 'aar')
- implementation(name: 'ijkplayer-nativelibs-release', ext: 'aar')
- implementation(name: 'msa_mdid_1.0.13', ext: 'aar')
- implementation(name: 'opuscodec-v1.2.1.2', ext: 'aar')
- implementation(name: 'rtmp-release', ext: 'aar')
- implementation(name: 'yunGame-release', ext: 'aar')
- // implementation(name: 'yunUI-release', ext: 'aar')
- implementation(name: 'yysdk_1.6.5', ext: 'aar')
- implementation(name: 'zmcaplayer-release', ext: 'aar')
- implementation project(":yunUI")
- }
|